add const qualifiers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 16:24:26 +00:00
parent 1fee6e2577
commit 328f5751e8
193 changed files with 2525 additions and 2513 deletions

View File

@@ -66,8 +66,8 @@ public:
wxFileSystem::ChangePathTo if you use
relative paths for the images or other resources embedded in your HTML.
*/
wxFileSystem GetFileSystem();
const wxFileSystem GetFileSystem();
wxFileSystem GetFileSystem() const;
const wxFileSystem GetFileSystem() const;
//@}
/**
@@ -81,7 +81,7 @@ public:
@see GetSelectedTextColour()
*/
wxColour GetSelectedTextBgColour(const wxColour& colBg);
wxColour GetSelectedTextBgColour(const wxColour& colBg) const;
/**
This virtual function may be overridden to customize the appearance of the
@@ -93,7 +93,7 @@ public:
@see GetSelectedTextBgColour(),
wxVListBox::SetSelectionBackground, wxSystemSettings::GetColour
*/
wxColour GetSelectedTextColour(const wxColour& colFg);
wxColour GetSelectedTextColour(const wxColour& colFg) const;
/**
This method must be implemented in the derived class and should return
@@ -107,13 +107,13 @@ public:
that the returned HTML fragment will render with the same height or else you'll
see some artifacts when the user selects an item.
*/
wxString OnGetItem(size_t n);
wxString OnGetItem(size_t n) const;
/**
This function may be overridden to decorate HTML returned by
OnGetItem().
*/
wxString OnGetItemMarkup(size_t n);
wxString OnGetItemMarkup(size_t n) const;
/**
Called when the user clicks on hypertext link. Does nothing by default.