Add the 'const's to to overridden methods in wxConfig so sip stays happy

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-09-25 04:10:09 +00:00
parent 45990bae2f
commit 2348f50748

View File

@@ -103,16 +103,16 @@ def run():
~wxConfig();
// pure virtuals with implementations here
const wxString & GetPath();
const wxString & GetPath() const;
void SetPath(const wxString & strPath);
bool GetFirstEntry(wxString & str, long & index);
bool GetFirstGroup(wxString & str, long & index);
bool GetNextEntry(wxString & str, long & index);
bool GetNextGroup(wxString & str, long & index);
size_t GetNumberOfEntries(bool bRecursive = false);
size_t GetNumberOfGroups(bool bRecursive = false);
bool HasEntry(const wxString & strName);
bool HasGroup(const wxString & strName);
bool GetFirstEntry(wxString & str, long & index) const;
bool GetFirstGroup(wxString & str, long & index) const;
bool GetNextEntry(wxString & str, long & index) const;
bool GetNextGroup(wxString & str, long & index) const;
size_t GetNumberOfEntries(bool bRecursive = false) const;
size_t GetNumberOfGroups(bool bRecursive = false) const;
bool HasEntry(const wxString & strName) const;
bool HasGroup(const wxString & strName) const;
bool Flush(bool bCurrentOnly = false);
bool RenameEntry(const wxString & oldName, const wxString & newName);
bool RenameGroup(const wxString & oldName, const wxString & newName);