From a87cb05ddcf0b68cf294e1bafdd453dfa199e7bc Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 6 Nov 2018 09:21:11 +0100 Subject: [PATCH] Silence the missing shcore.dll warning on Windows 7 --- src/tlwgeom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tlwgeom.cpp b/src/tlwgeom.cpp index 5567b0c..3947458 100644 --- a/src/tlwgeom.cpp +++ b/src/tlwgeom.cpp @@ -24,5 +24,5 @@ #if wxUSE_DYNLIB_CLASS wxDynamicLibrary wxTLWGeometryEx::s_dllUser32(wxT("user32.dll")); -wxDynamicLibrary wxTLWGeometryEx::s_dllShCore(wxT("shcore.dll")); +wxDynamicLibrary wxTLWGeometryEx::s_dllShCore(wxT("shcore.dll"), wxDL_DEFAULT | wxDL_QUIET); #endif