X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..142b15c5a1c54540de52a72f3059fdffaa1c8afe:/src/common/sysopt.cpp diff --git a/src/common/sysopt.cpp b/src/common/sysopt.cpp index cc01800a55..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: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -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