]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed wxMouseEvent::Moving() and Dragging() after the last change
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Oct 2003 15:05:32 +0000 (15:05 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Oct 2003 15:05:32 +0000 (15:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h

index c5277ee39ad9c3cae479352a1c7c32f5bebf7c67..f7ac632150bb2e5512ac22c02cede31c3ac9983b 100644 (file)
@@ -722,13 +722,13 @@ public:
     // True if a button is down and the mouse is moving
     bool Dragging() const
     {
-        return (m_eventType == wxEVT_MOTION) && ButtonDown(wxMOUSE_BTN_ANY);
+        return (m_eventType == wxEVT_MOTION) && ButtonIsDown(wxMOUSE_BTN_ANY);
     }
 
     // True if the mouse is moving, and no button is down
     bool Moving() const
     {
-        return (m_eventType == wxEVT_MOTION) && !ButtonDown(wxMOUSE_BTN_ANY);
+        return (m_eventType == wxEVT_MOTION) && !ButtonIsDown(wxMOUSE_BTN_ANY);
     }
 
     // True if the mouse is just entering the window