]> git.saurik.com Git - wxWidgets.git/commitdiff
build fix
authorPaul Cornett <paulcor@bullseye.com>
Mon, 2 Oct 2006 05:31:21 +0000 (05:31 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Mon, 2 Oct 2006 05:31:21 +0000 (05:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/dragimag/dragimag.cpp
samples/popup/popup.cpp

index 8b5be97a0fd892e211cd11779a0822ad349e5240..187c696f8ae4f12d8c74f26d2d2b8df101b2ad06 100644 (file)
@@ -468,7 +468,7 @@ DragShape::DragShape(const wxBitmap& bitmap)
 bool DragShape::HitTest(const wxPoint& pt) const
 {
     wxRect rect(GetRect());
-    return rect.Inside(pt.x, pt.y);
+    return rect.Contains(pt.x, pt.y);
 }
 
 bool DragShape::Draw(wxDC& dc, int op)
index 0306e91ccf2748c3c72aaf561a0e5cdece5092f3..8f5c2188b19b3938572dac6abe1706e294dd0e90 100644 (file)
@@ -200,7 +200,7 @@ void SimpleTransientPopup::OnMouse(wxMouseEvent &event)
     rect.SetWidth(1000000);
     wxColour colour(*wxLIGHT_GREY);
 
-    if (rect.Inside(event.GetPosition()))
+    if (rect.Contains(event.GetPosition()))
     {       
         colour = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT);
     wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnMouse pos(%d, %d)"), long(event.GetEventObject()), event.GetX(), event.GetY());