added AppendToPage

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-10-16 19:03:26 +00:00
parent 99f7d3407f
commit de112a55a2
2 changed files with 4 additions and 0 deletions

View 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