Use correct CheckForIntersect method
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27716 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -91,11 +91,11 @@ class TestFrame(wx.Frame):
|
|||||||
self.gbs.SetItemPosition(btn, self.lastPos)
|
self.gbs.SetItemPosition(btn, self.lastPos)
|
||||||
btn.SetLabel("Move this to (3,6)")
|
btn.SetLabel("Move this to (3,6)")
|
||||||
else:
|
else:
|
||||||
if self.gbs.CheckForIntersection( (3,6), (1,1) ):
|
if self.gbs.CheckForIntersectionPos( (3,6), (1,1) ):
|
||||||
wx.MessageBox("""\
|
wx.MessageBox("""\
|
||||||
wx.GridBagSizer will not allow items to be in the same cell as
|
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
|
another item, so this operation will fail. You will also get an
|
||||||
when compiled in debug mode.""",
|
assert when compiled in debug mode.""",
|
||||||
"Warning", wx.OK | wx.ICON_INFORMATION)
|
"Warning", wx.OK | wx.ICON_INFORMATION)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user