From: Jaakko Salli Date: Sat, 19 Dec 2009 15:07:52 +0000 (+0000) Subject: Suppress 'unused argument' warnings X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b9de6a2187045842e42a099645c31f9795c10994 Suppress 'unused argument' warnings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 0338827151..ed1076ccfa 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -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); }