From: Robin Dunn Date: Tue, 16 Oct 2001 19:03:26 +0000 (+0000) Subject: added AppendToPage X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/de112a55a230c4c2cc8b21970f047f90940497cb added AppendToPage git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/html.i b/wxPython/src/html.i index ba1d825afc..5cc5a25304 100644 --- a/wxPython/src/html.i +++ b/wxPython/src/html.i @@ -470,6 +470,7 @@ public: bool SetPage(const wxString& source); bool LoadPage(const wxString& location); + bool AppendToPage(const wxString& source); wxString GetOpenedPage(); wxString GetOpenedAnchor(); wxString GetOpenedPageTitle(); diff --git a/wxPython/src/msw/html.py b/wxPython/src/msw/html.py index 77afb80d45..2c2c6c31cd 100644 --- a/wxPython/src/msw/html.py +++ b/wxPython/src/msw/html.py @@ -520,6 +520,9 @@ class wxHtmlWindowPtr(wxScrolledWindowPtr): def LoadPage(self, *_args, **_kwargs): val = apply(htmlc.wxHtmlWindow_LoadPage,(self,) + _args, _kwargs) return val + def AppendToPage(self, *_args, **_kwargs): + val = apply(htmlc.wxHtmlWindow_AppendToPage,(self,) + _args, _kwargs) + return val def GetOpenedPage(self, *_args, **_kwargs): val = apply(htmlc.wxHtmlWindow_GetOpenedPage,(self,) + _args, _kwargs) return val