]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/config.cpp
Unix compilation fixed
[wxWidgets.git] / src / common / config.cpp
index d2015ed568225b44c0a14f6f80bff81cab28d270..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;