#endif
#include "wx/settings.h"
-#include "wx/colour.h"
-#include "wx/font.h"
-#include "wx/gdicmn.h"
-#include "wx/module.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/colour.h"
+ #include "wx/font.h"
+ #include "wx/gdicmn.h"
+ #include "wx/module.h"
+#endif
// ----------------------------------------------------------------------------
// global data
wxColour wxSystemSettingsNative::GetColour(wxSystemColour WXUNUSED(index))
{
- // not implemented, the mean is in wxUniversal
+ // overridden by wxSystemSettings::GetColour in wxUniversal
return wxColour(0,0,0);
}
switch (index)
{
case wxSYS_CAN_ICONIZE_FRAME:
- return false;
case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+ case wxSYS_TABLET_PRESENT:
return false;
+
default:
- {
- }
+ wxFAIL_MSG( _T("unknown feature") );
}
return false;