From af899cb15bbea6deee7ed2c7d324a0539ecdacad Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 26 May 2000 10:35:44 +0000 Subject: [PATCH] fix warning about virtual function hiding git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/helpxlp.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/wx/generic/helpxlp.h b/include/wx/generic/helpxlp.h index 823b5b936f..2452d92910 100644 --- a/include/wx/generic/helpxlp.h +++ b/include/wx/generic/helpxlp.h @@ -104,6 +104,11 @@ class WXDLLEXPORT wxXLPHelpController: public wxHelpControllerBase virtual bool DisplayBlock(long blockNo); virtual bool KeywordSearch(const wxString& k); + virtual bool DisplaySection(const wxString& section) + { + return wxHelpControllerBase::DisplaySection(section); + } + virtual bool Quit(void); virtual void OnQuit(void);