X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/95bfd958bda8955ac81277c78e5627c926154f39..9146872cb5243c629dfb0afc51fd5d8d8ca22826:/wxPython/demo/GridBagSizer.py diff --git a/wxPython/demo/GridBagSizer.py b/wxPython/demo/GridBagSizer.py index a0ee009bce..8bf5807446 100644 --- a/wxPython/demo/GridBagSizer.py +++ b/wxPython/demo/GridBagSizer.py @@ -91,11 +91,11 @@ class TestFrame(wx.Frame): self.gbs.SetItemPosition(btn, self.lastPos) btn.SetLabel("Move this to (3,6)") else: - if self.gbs.CheckForIntersection( (3,6), (1,1) ): + if self.gbs.CheckForIntersectionPos( (3,6), (1,1) ): wx.MessageBox("""\ wx.GridBagSizer will not allow items to be in the same cell as -another item, so this operation will fail. You will also get an assert -when compiled in debug mode.""", +another item, so this operation will fail. You will also get an +assert when compiled in debug mode.""", "Warning", wx.OK | wx.ICON_INFORMATION) try: @@ -144,5 +144,5 @@ span across more than one row or column. 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:])