X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bd20dac1968194e5161bcb1ac0b0a44ba36c0139..d728116a27b358e5b002337d96268fb51be128eb:/src/mgl/settings.cpp diff --git a/src/mgl/settings.cpp b/src/mgl/settings.cpp index 735674f249..4e6b6d28f8 100644 --- a/src/mgl/settings.cpp +++ b/src/mgl/settings.cpp @@ -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; + } +}