From f18ba20ce0e56f0805894698f9275c979d302545 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 13 Apr 2005 20:27:56 +0000 Subject: [PATCH] Corrected compile error git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/webkit.i | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wxPython/src/webkit.i b/wxPython/src/webkit.i index 7532ca6bbc..27037bbb46 100644 --- a/wxPython/src/webkit.i +++ b/wxPython/src/webkit.i @@ -86,8 +86,8 @@ public: bool CanGetPageSource() { return false; } wxString GetPageSource() { return wxEmptyString; } void SetPageSource(wxString& source, const wxString& baseUrl = wxEmptyString) {} - wxString GetPageURL(){ return m_currentURL; } - wxString GetPageTitle(){ return m_pageTitle; } + wxString GetPageURL() { return wxEmptyString; } + wxString GetPageTitle() { return wxEmptyString; } }; @@ -158,6 +158,8 @@ public: bool CanGetPageSource(); wxString GetPageSource(); void SetPageSource(wxString& source, const wxString& baseUrl = wxPyEmptyString); + wxString GetPageURL(); + wxString GetPageTitle(); }; -- 2.45.2