From a64004970cbea8743b54066944b702add7d9cfa6 Mon Sep 17 00:00:00 2001 From: Martin Corino Date: Wed, 30 Aug 2023 10:34:22 +0200 Subject: [PATCH] Fix wxHyperlinkCtrl::{Get,Set}Visited() signature in the docs Don't document these functions as being pure virtual because they are not. Closes #23838. --- interface/wx/hyperlink.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/hyperlink.h b/interface/wx/hyperlink.h index 4e51d41d41..9cbf707ee8 100644 --- a/interface/wx/hyperlink.h +++ b/interface/wx/hyperlink.h @@ -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