X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eee786e9cb8e3dde04c7e51d30bed4db74db7bfc..8cb9f0d0f82650b707adc39823a73531d080ffec:/include/wx/confbase.h diff --git a/include/wx/confbase.h b/include/wx/confbase.h index fb9f8f7127..840b5ed9a7 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -226,6 +226,9 @@ public: // misc accessors wxString GetAppName() const { return m_appName; } wxString GetVendorName() const { return m_vendorName; } + // Used wxIniConfig to set members in constructor + void SetAppName(const wxString& appName) { m_appName = appName; } + void SetVendorName(const wxString& vendorName) { m_vendorName = vendorName; } void SetStyle(long style) { m_style = style; } long GetStyle() const { return m_style; }