Suppress 'unused argument' warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli 2009-12-19 15:07:52 +00:00
parent a5b1be33b7
commit b9de6a2187

View 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);
}