From 0d2653ff9752af0cb4ba2b9fc9090700805cb4c5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 17 Dec 2004 02:01:08 +0000 Subject: [PATCH] Added default values for some parameters git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wx/lib/iewin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/wx/lib/iewin.py b/wxPython/wx/lib/iewin.py index 7ebc0097c2..691c2c4552 100644 --- a/wxPython/wx/lib/iewin.py +++ b/wxPython/wx/lib/iewin.py @@ -136,7 +136,7 @@ class IEHtmlWindow(wx.activex.IEHtmlWindowBase): return self.Navigate2(URL, Flags) - def GetStringSelection(self, asHTML): + def GetStringSelection(self, asHTML=True): """ Returns the contents of the selected portion of the document as either html or plain text. @@ -144,7 +144,7 @@ class IEHtmlWindow(wx.activex.IEHtmlWindowBase): return wx.activex.IEHtmlWindowBase.GetStringSelection(self, asHTML) - def GetText(self, asHTML): + def GetText(self, asHTML=True): """ Returns the contents of the the html document as either html or plain text. """ -- 2.45.2