]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/GridBagSizer.py
fixed icon image data
[wxWidgets.git] / wxPython / demo / GridBagSizer.py
index 867e32b7a7680423d30c086d7b2806587a33d356..8bf5807446dfb85f666d133a1f53e67df0edce82 100644 (file)
@@ -91,11 +91,11 @@ class TestFrame(wx.Frame):
             self.gbs.SetItemPosition(btn, self.lastPos)
             btn.SetLabel("Move this to (3,6)")
         else:
             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
                 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:
                               "Warning", wx.OK | wx.ICON_INFORMATION)
 
             try: