From: Vadim Zeitlin <vadim@wxwidgets.org> Date: Thu, 9 Feb 2012 16:22:04 +0000 (+0000) Subject: Document MSW-only wxEVT_MOVING event. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/37fff49cf1fa0306ba13d9ccc235c0c1c0ae3b62 Document MSW-only wxEVT_MOVING event. As we documented EVT_MOVE_{START,END}, we should do it for this one as well. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/event.h b/interface/wx/event.h index 639f8bdb59..62489467f5 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -4021,6 +4021,9 @@ public: @event{EVT_MOVE_START(func)} Process a @c wxEVT_MOVE_START event, which is generated when the user starts to move or size a window. wxMSW only. + @event{EVT_MOVING(func)} + Process a @c wxEVT_MOVING event, which is generated while the user is + moving the window. wxMSW only. @event{EVT_MOVE_END(func)} Process a @c wxEVT_MOVE_END event, which is generated when the user stops moving or sizing a window. wxMSW only.