X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7516ed26c9749018135c24afdd0576e4366c92e6..f138704e73645d58c647213bd8fbed0cb2c889fb:/src/univ/colschem.cpp diff --git a/src/univ/colschem.cpp b/src/univ/colschem.cpp index 608fd3ea2d..8e5dd4adee 100644 --- a/src/univ/colschem.cpp +++ b/src/univ/colschem.cpp @@ -34,6 +34,7 @@ #include "wx/settings.h" #include "wx/univ/colschem.h" +#include "wx/univ/theme.h" // ============================================================================ // implementation @@ -47,8 +48,6 @@ wxColourScheme::~wxColourScheme() { } -#ifdef wxHAS_SS_NATIVE - // ---------------------------------------------------------------------------- // wxSystemSettings // ---------------------------------------------------------------------------- @@ -86,7 +85,7 @@ wxColour wxSystemSettings::GetColour(wxSystemColour index) wxColourScheme::CONTROL /* wxSYS_COLOUR_LISTBOX */, }; - wxCHECK_MSG( index < WXSIZEOF(s_mapSysToThemeCol), wxNullColour, + wxCHECK_MSG( index < (int)WXSIZEOF(s_mapSysToThemeCol), wxNullColour, _T("invalid wxSystemColour") ); wxColourScheme::StdColour col = s_mapSysToThemeCol[index]; @@ -99,5 +98,3 @@ wxColour wxSystemSettings::GetColour(wxSystemColour index) return wxTheme::Get()->GetColourScheme()->Get(col); } -#endif // wxHAS_SS_NATIVE -