X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ba4130573b01a7427f8fdd8349093f830ddfbd9..584ad2a32fec156c6049145d7ece9a33213aea28:/include/wx/msw/regconf.h?ds=sidebyside diff --git a/include/wx/msw/regconf.h b/include/wx/msw/regconf.h index dc33f73841..666547a35d 100644 --- a/include/wx/msw/regconf.h +++ b/include/wx/msw/regconf.h @@ -12,7 +12,7 @@ #ifndef _REGCONF_H #define _REGCONF_H -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "regconf.h" #endif @@ -25,15 +25,15 @@ // wxRegConfig // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxRegConfig : public wxConfigBase +class WXDLLIMPEXP_BASE wxRegConfig : public wxConfigBase { public: // ctor & dtor // will store data in HKLM\appName and HKCU\appName - wxRegConfig(const wxString& appName = _T(""), - const wxString& vendorName = _T(""), - const wxString& localFilename = _T(""), - const wxString& globalFilename = _T(""), + wxRegConfig(const wxString& appName = wxEmptyString, + const wxString& vendorName = wxEmptyString, + const wxString& localFilename = wxEmptyString, + const wxString& globalFilename = wxEmptyString, long style = 0); // dtor will save unsaved data @@ -70,7 +70,7 @@ public: virtual bool RenameGroup(const wxString& oldName, const wxString& newName); // delete - virtual bool DeleteEntry(const wxString& key, bool bGroupIfEmptyAlso); + virtual bool DeleteEntry(const wxString& key, bool bGroupIfEmptyAlso = TRUE); virtual bool DeleteGroup(const wxString& key); virtual bool DeleteAll();