From: Steve Brokenshire Date: Thu, 24 Aug 2017 21:37:33 +0000 (+0100) Subject: XABAccountView: Removed virtual declaration from certain functions X-Git-Tag: release-0.20~38 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=ef80b7d71f4772d3ab734da6b32a2c3508ce85e8 XABAccountView: Removed virtual declaration from certain functions --- diff --git a/source/widgets/XABAccountView.h b/source/widgets/XABAccountView.h index 595e83a..56402ae 100644 --- a/source/widgets/XABAccountView.h +++ b/source/widgets/XABAccountView.h @@ -35,15 +35,15 @@ protected: public: - virtual void Init(); - virtual bool Create(wxWindow* parent); - virtual wxWindow* GetControl(); + void Init(); + bool Create(wxWindow* parent); + wxWindow* GetControl(); // Process wxString into a list selection. - virtual void SetStringValue(const wxString& s); + void SetStringValue(const wxString& s); // Get list selection as a wxString. - virtual wxString GetStringValue() const; + wxString GetStringValue() const; wxTreeItemId FindItemByText(wxTreeItemId parent, const wxString& text); void OnMouseClick(wxMouseEvent& WXUNUSED(event)); void ExpColProc(wxTreeEvent& event);