]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_app_ex.py
use the right number in the tarball filename
[wxWidgets.git] / wxPython / src / _app_ex.py
index 57b90756bd1ee540b09464509a884ce69d04ecdd..f6f7a5ac3e657b61940a05a108d4fadaee24021f 100644 (file)
@@ -131,7 +131,7 @@ class App(wx.PyApp):
         wx.PyApp.__init__(self)
 
         # make sure we can create a GUI
-        if not self.DisplayAvailable():
+        if not self.IsDisplayAvailable():
             
             if wx.Platform == "__WXMAC__":
                 msg = """This program needs access to the screen.
@@ -191,8 +191,8 @@ in on the main display of your Mac."""
         destroy(self)
 
     def Destroy(self):
+        self.this.own(False)
         wx.PyApp.Destroy(self)
-        self.thisown = 0
 
     def SetTopWindow(self, frame):
         """Set the \"main\" top level window"""