///////////////////////////////////////////////////////////////////////////////
-// Name: include/wx/msw/iniconf.h
+// Name: wx/msw/iniconf.h
// Purpose: INI-file based wxConfigBase implementation
// Author: David Webster
// Modified by:
// 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
{ 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