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