]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/IEHtmlWin.py
I keep running into situations where the old small default window size
[wxWidgets.git] / wxPython / demo / IEHtmlWin.py
index 4818e9d9b4fec98329fd1f828a58cbc070393a08..56e4c5793573102cf5c100ec9c37bd9ab31b22f0 100644 (file)
@@ -187,7 +187,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()
@@ -214,7 +214,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:])
 
 
 #----------------------------------------------------------------------