]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/settings.cpp
adding explicit log.h include
[wxWidgets.git] / src / msw / settings.cpp
index 476873b4af9ef8cf45a4ece9d83a85041c7198a3..591b4f7c634c21bd3666eb78c9126886f97ebdfd 100644 (file)
@@ -127,7 +127,12 @@ wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
         0,          // MENUBAR (unused)
     };
 
-    if ( index == wxSYS_COLOUR_LISTBOX )
+    if ( index == wxSYS_COLOUR_LISTBOXTEXT)
+    {
+        // there is no standard colour with this index, map to another one
+        index = wxSYS_COLOUR_WINDOWTEXT;
+    }
+    else if ( index == wxSYS_COLOUR_LISTBOX )
     {
         // there is no standard colour with this index, map to another one
         index = wxSYS_COLOUR_WINDOW;