X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/df5168c427b51f1ab2b3200a5c8f7626b3d24aae..9ca7505f1243ed1d2a2012caa09a52d41115c069:/src/common/sysopt.cpp?ds=sidebyside diff --git a/src/common/sysopt.cpp b/src/common/sysopt.cpp index 2c3439278e..5986e5cecf 100644 --- a/src/common/sysopt.cpp +++ b/src/common/sysopt.cpp @@ -6,7 +6,7 @@ // Created: 2001-07-10 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -17,7 +17,7 @@ // headers // --------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "sysopt.h" #endif @@ -74,7 +74,7 @@ wxArrayString wxSystemOptionsModule::sm_optionValues; bool wxSystemOptionsModule::OnInit() { - return TRUE; + return true; } void wxSystemOptionsModule::OnExit() @@ -90,7 +90,7 @@ void wxSystemOptionsModule::OnExit() // Option functions (arbitrary name/value mapping) void wxSystemOptions::SetOption(const wxString& name, const wxString& value) { - int idx = wxSystemOptionsModule::sm_optionNames.Index(name, FALSE); + int idx = wxSystemOptionsModule::sm_optionNames.Index(name, false); if (idx == wxNOT_FOUND) { wxSystemOptionsModule::sm_optionNames.Add(name); @@ -112,7 +112,7 @@ void wxSystemOptions::SetOption(const wxString& name, int value) wxString wxSystemOptions::GetOption(const wxString& name) { - int idx = wxSystemOptionsModule::sm_optionNames.Index(name, FALSE); + int idx = wxSystemOptionsModule::sm_optionNames.Index(name, false); if (idx == wxNOT_FOUND) return wxEmptyString; else @@ -126,7 +126,7 @@ int wxSystemOptions::GetOptionInt(const wxString& name) bool wxSystemOptions::HasOption(const wxString& name) { - return (wxSystemOptionsModule::sm_optionNames.Index(name, FALSE) != wxNOT_FOUND); + return (wxSystemOptionsModule::sm_optionNames.Index(name, false) != wxNOT_FOUND); } #endif