]> git.saurik.com Git - wxWidgets.git/commitdiff
minor changes
authorRobin Dunn <robin@alldunn.com>
Sat, 18 Sep 1999 18:21:02 +0000 (18:21 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 18 Sep 1999 18:21:02 +0000 (18:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/wxPython/demo/Main.py
utils/wxPython/demo/wxMessageDialog.py

index 2ff415103e94b8921f4a8174cd941f5272bb54be..0bc677b41bf375a427e0b2b58ddd455d6df42ea2 100644 (file)
@@ -276,6 +276,7 @@ class wxPythonDemo(wxFrame):
     def OnCloseWindow(self, event):
         self.dying = true
         self.window = None
+        self.mainmenu = None
         self.Destroy()
 
     #---------------------------------------------
index 344d7190d5ea6f305334ed8dcb9ffd9f7581e82a..17dcf7d7417ac7d8f6f9929d6dcce945b1ca6089 100644 (file)
@@ -6,6 +6,7 @@ from wxPython.wx import *
 def runTest(frame, nb, log):
     dlg = wxMessageDialog(frame, 'Hello from Python and wxPython!',
                           'A Message Box', wxOK | wxICON_INFORMATION)
+                          #wxYES_NO | wxNO_DEFAULT | wxCANCEL | wxICON_INFORMATION)
     dlg.ShowModal()
     dlg.Destroy()