projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
added wxRTTI macros to wxPopupComboWindow and wxPopupTransientWindow
[wxWidgets.git]
/
src
/
os2
/
settings.cpp
diff --git
a/src/os2/settings.cpp
b/src/os2/settings.cpp
index 05ba3aaf808e493eb7ad038fe50703d06af32437..6745891e57f70ab7af975b9f849018a8162aca2b 100644
(file)
--- a/
src/os2/settings.cpp
+++ b/
src/os2/settings.cpp
@@
-357,3
+357,15
@@
int wxSystemSettings::GetSystemMetric(int index)
return 0;
}
+bool wxSystemSettings::GetCapability(int index)
+{
+ switch (index)
+ {
+ case wxSYS_CAN_ICONIZE_FRAME:
+ case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+ return TRUE; break;
+ default:
+ return FALSE;
+ }
+ return FALSE;
+}