]> git.saurik.com Git - wxWidgets.git/commitdiff
added AppendToPage
authorRobin Dunn <robin@alldunn.com>
Tue, 16 Oct 2001 19:03:26 +0000 (19:03 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 16 Oct 2001 19:03:26 +0000 (19:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/html.i
wxPython/src/msw/html.py

index ba1d825afc9d38d7d10ca963f9fe4c91b15e9933..5cc5a2530492fedcb3dcb2a03603c7f8895f8d44 100644 (file)
@@ -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();
index 77afb80d45620509b5d4f403872fd4835e83b825..2c2c6c31cda4355727e75592cf153e2509b77359 100644 (file)
@@ -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