git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60643
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// implement inherited pure virtual functions
virtual void SetPath(const wxString& strPath);
// implement inherited pure virtual functions
virtual void SetPath(const wxString& strPath);
- virtual const wxString& GetPath() const { return m_strPath; }
+ virtual const wxString& GetPath() const;
virtual bool GetFirstGroup(wxString& str, long& lIndex) const;
virtual bool GetNextGroup (wxString& str, long& lIndex) const;
virtual bool GetFirstGroup(wxString& str, long& lIndex) const;
virtual bool GetNextGroup (wxString& str, long& lIndex) const;
DoSetPath(strPath, true /* create missing path components */);
}
DoSetPath(strPath, true /* create missing path components */);
}
+const wxString& wxFileConfig::GetPath() const
+{
+ return m_strPath;
+}
+
// ----------------------------------------------------------------------------
// enumeration
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// enumeration
// ----------------------------------------------------------------------------