]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix event types in wxMouseEvent::Aux1DClick() and Aux1DClick().
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 4 Jul 2011 17:22:49 +0000 (17:22 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 4 Jul 2011 17:22:49 +0000 (17:22 +0000)
wxEVT_AUX[12]_UP were wrongly used instead of the correct wxEVT_AUX[12]_DCLICK.

Closes #13308.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68154 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h

index 338ce78a0998ce44172527b690f0cdb79356c5e3..a94c5375dfd8fd199a0f3d1b558c3ef776108990 100644 (file)
@@ -1502,8 +1502,8 @@ public:
     bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); }
     bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); }
     bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); }
-    bool Aux1DClick() const { return (m_eventType == wxEVT_AUX1_UP); }
-    bool Aux2DClick() const { return (m_eventType == wxEVT_AUX2_UP); }
+    bool Aux1DClick() const { return (m_eventType == wxEVT_AUX1_DCLICK); }
+    bool Aux2DClick() const { return (m_eventType == wxEVT_AUX2_DCLICK); }
 
     // True if a button is down and the mouse is moving
     bool Dragging() const