From: Václav Slavík Date: Fri, 9 Dec 2005 12:34:29 +0000 (+0000) Subject: made wxHtmlWindow::SetPage virtual so that the behaviour can be customized X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/04f109ec63bb2522e520ce9239828e8ee41cd61c?ds=inline made wxHtmlWindow::SetPage virtual so that the behaviour can be customized git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36351 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/html/htmlwin.h b/include/wx/html/htmlwin.h index 57cc3f500b..807960b7ed 100644 --- a/include/wx/html/htmlwin.h +++ b/include/wx/html/htmlwin.h @@ -85,7 +85,7 @@ public: // it is NOT address/filename of HTML document. If you want to // specify document location, use LoadPage() istead // Return value : false if an error occurred, true otherwise - bool SetPage(const wxString& source); + virtual bool SetPage(const wxString& source); // Append to current page bool AppendToPage(const wxString& source);