X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a7ee13434043592cce6f9a1d8344686a9867f68e..47bc1060127d86222768789575295254a710f5a6:/include/wx/msw/regconf.h diff --git a/include/wx/msw/regconf.h b/include/wx/msw/regconf.h index d8274e321e..3cb0213720 100644 --- a/include/wx/msw/regconf.h +++ b/include/wx/msw/regconf.h @@ -69,6 +69,10 @@ public: { return wxConfigBase::Read(key, defVal); } bool Read(const wxString& key, long *pl, long defVal) const { return wxConfigBase::Read(key, pl, 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); } long Read(const wxString& key, long defVal) const { return wxConfigBase::Read(key, defVal); } bool Read(const wxString& key, double* val) const