Fix wxHyperlinkCtrl::{Get,Set}Visited() signature in the docs
Don't document these functions as being pure virtual because they are not. Closes #23838.
This commit is contained in:
parent
7f1e2de126
commit
a64004970c
1 changed files with 2 additions and 2 deletions
|
|
@ -164,7 +164,7 @@ public:
|
|||
Returns @true if the hyperlink has already been clicked by the user at least
|
||||
one time.
|
||||
*/
|
||||
virtual bool GetVisited() const = 0;
|
||||
virtual bool GetVisited() const;
|
||||
|
||||
/**
|
||||
Returns the colour used to print the label when the mouse is not over the
|
||||
|
|
@ -195,7 +195,7 @@ public:
|
|||
/**
|
||||
Marks the hyperlink as visited (see wxHyperlinkCtrl::SetVisitedColour).
|
||||
*/
|
||||
virtual void SetVisited(bool visited = true) = 0;
|
||||
virtual void SetVisited(bool visited = true);
|
||||
|
||||
/**
|
||||
Sets the colour used to print the label when the mouse is not over the control
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue