X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47d67540a017101b3e46abe9ef0f55914d8de37e..321db4b6bf15df209942b9c0e6c744c8e7074d1b:/include/wx/fileconf.h diff --git a/include/wx/fileconf.h b/include/wx/fileconf.h index e17e8cae08..24b1a95902 100644 --- a/include/wx/fileconf.h +++ b/include/wx/fileconf.h @@ -166,6 +166,10 @@ public: { return wxConfigBase::Read(key, pl, defVal); } long Read(const wxString& key, long defVal) const { return wxConfigBase::Read(key, defVal); } + bool Read(const wxString& key, int *pi, int defVal) const + { return wxConfigBase::Read(key, pi, defVal); } + bool Read(const wxString& key, int *pi) const + { return wxConfigBase::Read(key, pi); } bool Read(const wxString& key, double* val) const { return wxConfigBase::Read(key, val); } bool Read(const wxString& key, double* val, double defVal) const