]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/toolbkg.cpp
If a TLW's default item is not an immediate child then it can be left
[wxWidgets.git] / src / generic / toolbkg.cpp
index 0ae9b0b607c1f26ec5340c32a85e83eb66b19d63..f85a27462b292f95280132d4fade61b5d15aa972 100644 (file)
@@ -321,7 +321,7 @@ int wxToolbook::HitTest(const wxPoint& pt, long *flags) const
     const wxPoint tbarPt = tbar->ScreenToClient(ClientToScreen(pt));
 
     // is the point over the toolbar?
-    if ( wxRect(tbar->GetSize()).Inside(tbarPt) )
+    if ( wxRect(tbar->GetSize()).Contains(tbarPt) )
     {
         const wxToolBarToolBase * const
             tool = tbar->FindToolForPosition(tbarPt.x, tbarPt.y);
@@ -335,7 +335,7 @@ int wxToolbook::HitTest(const wxPoint& pt, long *flags) const
     }
     else // not over the toolbar
     {
-        if ( flags && GetPageRect().Inside(pt) )
+        if ( flags && GetPageRect().Contains(pt) )
             *flags |= wxBK_HITTEST_ONPAGE;
     }