X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5d1902d6d6efc842c8f488520d3cca40f1ae99f8..da61ab3189f71a2b0913bac13c48755c5d038037:/include/wx/fileconf.h diff --git a/include/wx/fileconf.h b/include/wx/fileconf.h index 3465dc923f..c4712f7147 100644 --- a/include/wx/fileconf.h +++ b/include/wx/fileconf.h @@ -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);