From 04f109ec63bb2522e520ce9239828e8ee41cd61c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 9 Dec 2005 12:34:29 +0000 Subject: [PATCH] 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 --- include/wx/html/htmlwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);