]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/sysopt.cpp
wxdocmpnocase fixup
[wxWidgets.git] / src / common / sysopt.cpp
index aa36947d7bb35cdcae11ea3d5cbb78555b7c9d61..5986e5cecf9149730f8ad4c68eba100fa0b93117 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     2001-07-10
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWindows 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