]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/settings.cpp
removed subprojects for ldef and cdef, changed to in-proc ldef
[wxWidgets.git] / src / motif / settings.cpp
index 62e04d0be8e28a7c0299b178630829b13b97da38..b75b68efc92fbc451f76d1b094bdf59688695eb1 100644 (file)
@@ -231,3 +231,14 @@ int wxSystemSettings::GetSystemMetric(int index)
        }
 }
 
+bool wxSystemSettings::GetCapability(int index)
+{
+    switch (index)
+    {
+        case wxSYS_CAN_ICONIZE_FRAME: 
+        case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+            return TRUE; break;
+        default:
+            return FALSE;
+    }
+}