X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..d35ad26eee38a8d71efde5a6e7f7f28f4b7df1bd:/src/mgl/settings.cpp?ds=sidebyside diff --git a/src/mgl/settings.cpp b/src/mgl/settings.cpp index b148119a40..465cf23591 100644 --- a/src/mgl/settings.cpp +++ b/src/mgl/settings.cpp @@ -1,9 +1,9 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: settings.h +// Name: src/mgl/settings.cpp // Author: Vaclav Slavik, Robert Roebling // Id: $Id$ // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // For compilers that support precompilation, includes "wx.h". @@ -28,7 +28,7 @@ static wxFont *gs_fontDefault = NULL; class wxSystemSettingsModule : public wxModule { public: - virtual bool OnInit() { return TRUE; } + virtual bool OnInit() { return true; } virtual void OnExit() { delete gs_fontDefault; @@ -65,18 +65,21 @@ wxFont wxSystemSettingsNative::GetFont(wxSystemFont index) case wxSYS_DEFAULT_GUI_FONT: { if ( !gs_fontDefault ) - gs_fontDefault = new wxFont(10, wxSWISS, wxNORMAL, wxNORMAL, FALSE, "Arial"); + gs_fontDefault = new wxFont(10, wxSWISS, wxNORMAL, wxNORMAL, false, "Arial"); return *gs_fontDefault; } default: - return wxNullFont; + { + } } + + return wxNullFont; } int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(win)) { int val; - + switch (index) { case wxSYS_SCREEN_X: @@ -87,22 +90,27 @@ int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(w return val; case wxSYS_VSCROLL_X: case wxSYS_HSCROLL_Y: - return 15; - break; + return 15; default: - return -1; // unsupported metric + { + } } + + return -1; // unsupported metric } bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) { switch (index) { - case wxSYS_CAN_ICONIZE_FRAME: - return FALSE; break; + case wxSYS_CAN_ICONIZE_FRAME: + return false; case wxSYS_CAN_DRAW_FRAME_DECORATIONS: - return FALSE; break; + return false; default: - return FALSE; + { + } } + + return false; }