revert a few of these back

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29291 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-09-23 20:36:24 +00:00
parent a72f4631fe
commit 41b78a7aaf
2 changed files with 3 additions and 3 deletions

View File

@@ -113,7 +113,7 @@ public:
elif index == 1: self.SetCol(val) elif index == 1: self.SetCol(val)
else: raise IndexError else: raise IndexError
def __nonzero__(self): return self.Get() != (0,0) def __nonzero__(self): return self.Get() != (0,0)
__safe_for_unpickling__ = true __safe_for_unpickling__ = True
def __reduce__(self): return (wx.GBPosition, self.Get()) def __reduce__(self): return (wx.GBPosition, self.Get())
} }
@@ -182,7 +182,7 @@ cell in each direction.", "");
elif index == 1: self.SetColspan(val) elif index == 1: self.SetColspan(val)
else: raise IndexError else: raise IndexError
def __nonzero__(self): return self.Get() != (0,0) def __nonzero__(self): return self.Get() != (0,0)
__safe_for_unpickling__ = true __safe_for_unpickling__ = True
def __reduce__(self): return (wx.GBSpan, self.Get()) def __reduce__(self): return (wx.GBSpan, self.Get())
} }

View File

@@ -860,7 +860,7 @@ the item.", "");
} }
%pythoncode { %pythoncode {
def Hide(self, item, recursive=false): def Hide(self, item, recursive=False):
""" """
A convenience method for Show(item, False, recursive). A convenience method for Show(item, False, recursive).
""" """