]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/settcmn.cpp
Fix for listbox problem, when created on invisible
[wxWidgets.git] / src / common / settcmn.cpp
index b0b6faf2118dafefda64770dc28346af0ab17b94..f5862ba7afb8734bf80cc9f1bceefc21d7d467ed 100644 (file)
@@ -72,3 +72,21 @@ void wxSystemSettings::SetScreenType( wxSystemScreenType screen )
     ms_screen = screen;
 }
 
+#if WXWIN_COMPATIBILITY_2_4
+
+wxColour wxSystemSettings::GetSystemColour(int index)
+{
+    return GetColour((wxSystemColour)index);
+}
+
+wxFont wxSystemSettings::GetSystemFont(int index)
+{
+    return GetFont((wxSystemFont)index);
+}
+
+int wxSystemSettings::GetSystemMetric(int index)
+{
+    return GetMetric((wxSystemMetric)index);
+}
+
+#endif // WXWIN_COMPATIBILITY_2_4