]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Dialog.py
SetStringSelection and etc. fixes
[wxWidgets.git] / wxPython / demo / Dialog.py
index 3c4fb71721738f53783e9c8274fd9effd9e6b721..d541467e68627a503a1a9f68058ac7fc8c4623bf 100644 (file)
@@ -26,7 +26,7 @@ class TestDialog(wx.Dialog):
         # This next step is the most important, it turns this Python
         # object into the real wrapper of the dialog (instead of pre)
         # as far as the wxPython extension is concerned.
-        self.this = pre.this
+        self.PostCreate(pre)
 
         # Now continue with the normal construction of the dialog
         # contents
@@ -129,5 +129,5 @@ See the documentation for the <code>Dialog</code> class for more details.
 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:])