]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/IEHtmlWin.py
Fixed OOR typo
[wxWidgets.git] / wxPython / demo / IEHtmlWin.py
index 33e5b8c8be88e0637e6a3e54b1d93e8ddf65792a..672e29d755891866bfd73b4b015d41845dda2679 100644 (file)
@@ -2,10 +2,6 @@
 #
 # o Updated for wx namespace
 # 
-# 11/28/2003 - Jeff Grimmett (grimmtooth@softhome.net)
-#
-# o iewin.py is missing
-# 
 
 import  wx
 
@@ -187,7 +183,7 @@ def runTest(frame, nb, log):
         win = TestPanel(nb, log, frame)
         return win
     else:
-        dlg = wx.MessageDialog(frame, 'This demo only works on MSW.',
+        dlg = wx.MessageDialog(frame, 'This demo only works on Windows.',
                           'Sorry', wx.OK | wx.ICON_INFORMATION)
         dlg.ShowModal()
         dlg.Destroy()
@@ -196,9 +192,9 @@ def runTest(frame, nb, log):
 
 overview = """\
 <html><body>
-<h2>wxIEHtmlWin</h2>
+<h2>wx.IEHtmlWin</h2>
 
-The wxIEHtmlWin class is the first example of using a contributed
+The wx.IEHtmlWin class is the first example of using a contributed
 wxActiveX class in wxWindows C++.  It is still experimental, but
 I think it is useful.
 
@@ -214,7 +210,7 @@ events and etc. as would be expected from any other wx window.
 if __name__ == '__main__':
     import sys,os
     import run
-    run.main(['', os.path.basename(sys.argv[0])])
+    run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
 
 
 #----------------------------------------------------------------------