From b9de6a2187045842e42a099645c31f9795c10994 Mon Sep 17 00:00:00 2001 From: Jaakko Salli Date: Sat, 19 Dec 2009 15:07:52 +0000 Subject: [PATCH] Suppress 'unused argument' warnings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/window.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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); } -- 2.45.2