]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/config.cpp
fixing osx_cocoa
[wxWidgets.git] / src / common / config.cpp
index 636b490e3914dfd07372d87567059ed78b90d28f..12c8213002a893d41cd3d70c232dec5a4cc113dc 100644 (file)
@@ -221,7 +221,15 @@ bool wxConfigBase::DoReadBool(const wxString& key, bool* val) const
     if ( !DoReadLong(key, &l) )
         return false;
 
-    wxASSERT_MSG( l == 0 || l == 1, wxT("bad bool value in wxConfig::DoReadInt") );
+    if ( l != 0 && l != 1 )
+    {
+        // Don't assert here as this could happen in the result of user editing
+        // the file directly and this not indicate a bug in the program but
+        // still complain that something is wrong.
+        wxLogWarning(_("Invalid value %ld for a boolean key \"%s\" in "
+                       "config file."),
+                     l, key);
+    }
 
     *val = l != 0;