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:
Martin Corino 2023-08-30 10:34:22 +02:00 committed by Vadim Zeitlin
parent 7f1e2de126
commit a64004970c

View file

@ -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