X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dbcbe229628c7667da2b6257198467d4f09ab28d..88594d02eb59a55ac85d3210a49d02918124617b:/src/gtk/settings.cpp diff --git a/src/gtk/settings.cpp b/src/gtk/settings.cpp index 36662eb0a5..85b2c7c312 100644 --- a/src/gtk/settings.cpp +++ b/src/gtk/settings.cpp @@ -369,3 +369,16 @@ int wxSystemSettings::GetSystemMetric( int index ) return 0; } + +bool wxSystemSettings::GetCapability(int index) +{ + switch (index) + { + case wxSYS_CAN_ICONIZE_FRAME: + return FALSE; break; + case wxSYS_CAN_DRAW_FRAME_DECORATIONS: + return TRUE; break; + default: + return FALSE; + } +}