X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fb9010ed40454cc978a9cbaa6de2ee41ea8b6c84..05112735c29d896a101918aacd2224b54f6dd653:/include/wx/os2/iniconf.h?ds=sidebyside diff --git a/include/wx/os2/iniconf.h b/include/wx/os2/iniconf.h index 28c7436509..896947c4f4 100644 --- a/include/wx/os2/iniconf.h +++ b/include/wx/os2/iniconf.h @@ -35,7 +35,7 @@ // same as appname). The file name (strAppName parameter) may, in fact, // contain the full path to the file. If it doesn't, the file is searched for // in the Windows directory. -class WXDLLEXPORT wxIniConfig : public wxConfigBase +class WXDLLIMPEXP_CORE wxIniConfig : public wxConfigBase { public: // ctor & dtor @@ -114,6 +114,8 @@ private: { return(wxConfigBase::Write(key, value));}; virtual bool Write(const wxString& key, bool value) { return(wxConfigBase::Write(key, value));}; + virtual bool Write(const wxString& key, const char* value) + { return(wxConfigBase::Write(key, value));}; }; #endif //_INICONF_H