git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22530
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
}
// Windows only: attempts to apply the UX theme page background to this page
+#if wxUSE_UXTHEME
void wxNotebook::ApplyThemeBackground(wxWindow* window, const wxColour& colour)
+#else
+void wxNotebook::ApplyThemeBackground(wxWindow*, const wxColour&)
+#endif
{
#if wxUSE_UXTHEME
// Don't set the background for buttons since this will
wxWindow *child = node->GetData();
ApplyThemeBackground(child, colour);
}
-#else
- window;
- colour;
#endif
}