Correct wxEVT_AUXn_XXX event types names.

They had a wrong "MOUSE" part in them while "MOUSE" is only used for the event
table macros but not the event types themselves for some reason.

Closes #12095.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-05-27 17:07:35 +00:00
parent 7bad1010c2
commit 7f4f5e8c24

View File

@@ -2014,17 +2014,17 @@ public:
@event{EVT_RIGHT_DCLICK(func)}
Process a @c wxEVT_RIGHT_DCLICK event.
@event{EVT_MOUSE_AUX1_DOWN(func)}
Process a @c wxEVT_MOUSE_AUX1_DOWN event.
Process a @c wxEVT_AUX1_DOWN event.
@event{EVT_MOUSE_AUX1_UP(func)}
Process a @c wxEVT_MOUSE_AUX1_UP event.
Process a @c wxEVT_AUX1_UP event.
@event{EVT_MOUSE_AUX1_DCLICK(func)}
Process a @c wxEVT_MOUSE_AUX1_DCLICK event.
Process a @c wxEVT_AUX1_DCLICK event.
@event{EVT_MOUSE_AUX2_DOWN(func)}
Process a @c wxEVT_MOUSE_AUX2_DOWN event.
Process a @c wxEVT_AUX2_DOWN event.
@event{EVT_MOUSE_AUX2_UP(func)}
Process a @c wxEVT_MOUSE_AUX2_UP event.
Process a @c wxEVT_AUX2_UP event.
@event{EVT_MOUSE_AUX2_DCLICK(func)}
Process a @c wxEVT_MOUSE_AUX2_DCLICK event.
Process a @c wxEVT_AUX2_DCLICK event.
@event{EVT_MOTION(func)}
Process a @c wxEVT_MOTION event.
@event{EVT_ENTER_WINDOW(func)}