]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/iniconf.h
Try to avoid accidental use of wxXmlNode in XRC handlers.
[wxWidgets.git] / include / wx / os2 / iniconf.h
index 28c7436509ba6493b0121eedb358df9d602db0ec..07cb3ef0ff993348b2a3f976d69647e0bafc8cfc 100644 (file)
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        include/wx/msw/iniconf.h
+// Name:        wx/os2/iniconf.h
 // Purpose:     INI-file based wxConfigBase implementation
 // Author:      David Webster
 // Modified by:
@@ -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
@@ -107,13 +107,15 @@ private:
            m_strPath;     // the rest of the path (no trailing '_'!)
   // Virtual function hiding
   virtual bool Read(const wxString& key, bool* val) const
-  { return(wxConfigBase::Read(key, val));};
+  { return(wxConfigBase::Read(key, val));}
   virtual bool Read(const wxString& key, bool* val, bool defVal) const
-  { return(wxConfigBase::Read(key, val, defVal));};
+  { return(wxConfigBase::Read(key, val, defVal));}
   virtual bool Write(const wxString& key, double value)
-  { return(wxConfigBase::Write(key, value));};
+  { return(wxConfigBase::Write(key, value));}
   virtual bool Write(const wxString& key, bool value)
-  { return(wxConfigBase::Write(key, value));};
+  { return(wxConfigBase::Write(key, value));}
+  virtual bool Write(const wxString& key, const char* value)
+  { return(wxConfigBase::Write(key, value));}
 };
 
 #endif  //_INICONF_H