]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/settings.cpp
better <HR> tag handling in wxHTML
[wxWidgets.git] / src / msw / settings.cpp
index 360e8a2fc3c618f9404453a47f05e578dcde3d05..e5e54f501706d3c0708882b644f98cba45a87d9e 100644 (file)
@@ -267,3 +267,14 @@ int wxSystemSettings::GetSystemMetric(int index)
     // __WXMICROWIN__
 }
 
     // __WXMICROWIN__
 }
 
+bool wxSystemSettings::GetCapability(int index)
+{
+    switch (index)
+    {
+        case wxSYS_CAN_ICONIZE_FRAME: 
+        case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+            return TRUE; break;
+        default:
+            return FALSE;
+    }
+}