]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/utils.cpp
don't inherit the controls colours from the parent - at least for the background...
[wxWidgets.git] / src / mac / utils.cpp
index d7e671c58236cdf3330c776f5f1ed5f1be880b47..2e2ffd6c4a37c12ccabd251f0f11d7a7adcc1301 100644 (file)
@@ -486,5 +486,11 @@ wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
 
 wxString wxGetOsDescription()
 {
-  return "MacOS" ; //TODO:define further
-}
\ No newline at end of file
+#ifdef WXWIN_OS_DESCRIPTION
+    // use configure generated description if available
+    return wxString("MacOS (") + WXWIN_OS_DESCRIPTION + wxString(")");
+#else
+    return "MacOS" ; //TODO:define further
+#endif
+}
+