]> git.saurik.com Git - wxWidgets.git/commitdiff
Suppress 'unused argument' warnings
authorJaakko Salli <jaakko.salli@dnainternet.net>
Sat, 19 Dec 2009 15:07:52 +0000 (15:07 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Sat, 19 Dec 2009 15:07:52 +0000 (15:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 033882715129ed07f075145bbef326a1a50e4cb0..ed1076ccfa4405b6cc57c267ca07e2546ad4ba45 100644 (file)
@@ -4755,6 +4755,11 @@ wxColour wxWindowMSW::MSWGetThemeColour(const wchar_t *themeName,
                 themeName, themePart, themeState, themeProperty),
             hr);
     }
+#else
+    wxUnusedVar(themeName);
+    wxUnusedVar(themePart);
+    wxUnusedVar(themeState);
+    wxUnusedVar(themeColour);
 #endif
     return wxSystemSettings::GetColour(fallback);
 }