]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/settings.cpp
compilation warning fix
[wxWidgets.git] / src / mgl / settings.cpp
index bca51ecd13963999e0feb9066029612a0548341d..4e6b6d28f8f162974b3b622c102d60bb81c06f7b 100644 (file)
@@ -24,7 +24,7 @@ wxColour wxSystemSettings::GetSystemColour(int WXUNUSED(index))
 wxFont wxSystemSettings::GetSystemFont(int WXUNUSED(index))
 {
     // FIXME_MGL
-    return wxFont(9, wxSWISS, wxNORMAL, wxNORMAL);
+    return wxFont(10, wxSWISS, wxNORMAL, wxNORMAL, FALSE, "Arial");
 }
 
 int wxSystemSettings::GetSystemMetric(int WXUNUSED(index))
@@ -32,3 +32,16 @@ int wxSystemSettings::GetSystemMetric(int WXUNUSED(index))
     // FIXME_MGL
     return 1;
 }
+
+bool wxSystemSettings::GetCapability(int index)
+{
+    switch (index)
+    {
+        case wxSYS_CAN_ICONIZE_FRAME: 
+            return FALSE; break;
+        case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+            return FALSE; break;
+        default:
+            return FALSE;
+    }
+}