]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/fileconf.h
shows different SetCursor() calls
[wxWidgets.git] / include / wx / fileconf.h
index 3465dc923f72ace9478418c36e384ebb075eca84..c4712f714795de2e3aca278850ddf4c9582ce69b 100644 (file)
@@ -202,9 +202,17 @@ public:
     { return wxConfigBase::Read(key, val); }
   bool Read(const wxString& key, double* val, double defVal) const
     { return wxConfigBase::Read(key, val, defVal); }
+  bool Read(const wxString& key, bool* val) const
+    { return wxConfigBase::Read(key, val); }
+  bool Read(const wxString& key, bool* val, bool defVal) const
+    { return wxConfigBase::Read(key, val, defVal); }
 
   virtual bool Write(const wxString& key, const wxString& szValue);
   virtual bool Write(const wxString& key, long lValue);
+  bool Write(const wxString& key, double value)
+    { return wxConfigBase::Write(key, value); }
+  bool Write(const wxString& key, bool value)
+    { return wxConfigBase::Write(key, value); }
 
   virtual bool Flush(bool bCurrentOnly = FALSE);