]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/settings.cpp
0. wxExecute() with IO redirection now works again (but the real fix is
[wxWidgets.git] / src / x11 / settings.cpp
index d27621f7c45bea38b80bd79b676f5b979e76c0c9..f7d484b3d6de748b7ff11f14f9412e226be95d2e 100644 (file)
 
 wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
 {
 
 wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
 {
-    // Overridden by wxSystemSettings::GetColour in wxUniversal
-    // to do the Right Thing
+    switch (index)
+    {
+        case wxSYS_COLOUR_APPWORKSPACE:
+            return wxColour( 0xc0c0c0 );
+            
+        default:
+            break;
+    }
+    
+    // Overridden mostly by wxSystemSettings::GetColour in wxUniversal
     return *wxWHITE;
 }
 
     return *wxWHITE;
 }