]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/gtk/_core.py
reSWIGged
[wxWidgets.git] / wxPython / src / gtk / _core.py
index 69cbe9f28acb63ef73ef671a29baf039deae5d6d..fabc89d43b62dbf75e1cb31b48f96f61c0d522b4 100644 (file)
@@ -5068,7 +5068,7 @@ class App(wx.PyApp):
     ``self.SetTopWindow(frame)``.
 
     :see: `wx.PySimpleApp` for a simpler app class that can be used
-    directly.
+           directly.
     """
     
     outputWindowClass = PyOnDemandOutputWindow
@@ -5115,6 +5115,8 @@ This program needs access to the screen. Please run with 'pythonw',
 not 'python', and only when you are logged in on the main display of
 your Mac."""
                     _sys.exit(1)
+            except SystemExit:
+                raise
             except:
                 pass
 
@@ -8656,6 +8658,10 @@ class Sizer(Object):
         """Remove(self, PyObject item) -> bool"""
         return _core_.Sizer_Remove(*args, **kwargs)
 
+    def Detach(*args, **kwargs):
+        """Detach(self, PyObject item) -> bool"""
+        return _core_.Sizer_Detach(*args, **kwargs)
+
     def _SetItemMinSize(*args, **kwargs):
         """_SetItemMinSize(self, PyObject item, Size size)"""
         return _core_.Sizer__SetItemMinSize(*args, **kwargs)
@@ -8726,11 +8732,11 @@ class Sizer(Object):
         return _core_.Sizer_GetMinSize(*args, **kwargs)
 
     def GetSizeTuple(self):
-        return self.GetSize().asTuple()
+        return self.GetSize().Get()
     def GetPositionTuple(self):
-        return self.GetPosition().asTuple()
+        return self.GetPosition().Get()
     def GetMinSizeTuple(self):
-        return self.GetMinSize().asTuple()
+        return self.GetMinSize().Get()
 
     def RecalcSizes(*args, **kwargs):
         """RecalcSizes(self)"""