]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/PlatWX.cpp
wxMSW compilation fix
[wxWidgets.git] / src / stc / PlatWX.cpp
index e008465c852a44bfaa58bbb5c8f6581f35c80023..a57756bc9ce10fe308c7a614c67ec5f6b471c63e 100644 (file)
@@ -575,13 +575,13 @@ void Menu::Show(Point pt, Window &w) {
 
 Colour Platform::Chrome() {
     wxColour c;
-    c = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE);
+    c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
     return Colour(c.Red(), c.Green(), c.Blue());
 }
 
 Colour Platform::ChromeHighlight() {
     wxColour c;
-    c = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DHIGHLIGHT);
+    c = wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT);
     return Colour(c.Red(), c.Green(), c.Blue());
 }