]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/config.cpp
compilation fixes
[wxWidgets.git] / src / common / config.cpp
index 129c866e995f546574b046a607c225c57b9bdf69..1b614016b2750f3951157b227aff3b60d4e37490 100644 (file)
@@ -132,9 +132,9 @@ bool wxConfigBase::Read(const wxString& key, long *pl, long defVal) const
 bool wxConfigBase::Read(const wxString& key, double* val) const
 {
     wxString str;
-    if (Read(key, & str))
+    if ( Read(key, &str) )
     {
-        return wxSscanf(str, _T("%g"), val) == 1;
+        return str.ToDouble(val);
     }
 
     return FALSE;
@@ -206,6 +206,12 @@ bool wxConfigBase::Write(const wxString& key, bool value)
     return Write(key, value ? 1l : 0l);
 }
 
+bool wxConfigBase::Write(const wxString& key, const wxChar *value)
+{
+    // explicit cast needed, otherwise value would have been converted to bool
+    return Write(key, wxString(value));
+}
+
 wxString wxConfigBase::ExpandEnvVars(const wxString& str) const
 {
     wxString tmp; // Required for BC++