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

@@ -28,7 +28,7 @@ public:
/**
Returns the URL of the hyperlink where the user has just clicked.
*/
wxString GetURL();
wxString GetURL() const;
/**
Sets the URL associated with the event.
@@ -114,25 +114,25 @@ public:
Returns the colour used to print the label of the hyperlink when the mouse is
over the control.
*/
wxColour GetHoverColour();
wxColour GetHoverColour() const;
/**
Returns the colour used to print the label when the link has never been clicked
before
(i.e. the link has not been @e visited) and the mouse is not over the control.
*/
wxColour GetNormalColour();
wxColour GetNormalColour() const;
/**
Returns the URL associated with the hyperlink.
*/
wxString GetURL();
wxString GetURL() const;
/**
Returns @true if the hyperlink has already been clicked by the user at least
one time.
*/
bool GetVisited();
bool GetVisited() const;
/**
Returns the colour used to print the label when the mouse is not over the
@@ -140,7 +140,7 @@ public:
and the link has already been clicked before (i.e. the link has been @e
visited).
*/
wxColour GetVisitedColour();
wxColour GetVisitedColour() const;
/**
Sets the colour used to print the label of the hyperlink when the mouse is over