Slightly improve wxMouseCaptureLostEvent documentation.

Minor changes to make the event description more clear.

Closes #13052.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-03-19 11:57:10 +00:00
parent 6d090da1e9
commit 0af4bd16a1

View File

@@ -2906,11 +2906,11 @@ public:
/** /**
@class wxMouseCaptureLostEvent @class wxMouseCaptureLostEvent
An mouse capture lost event is sent to a window that obtained mouse capture, A mouse capture lost event is sent to a window that had obtained mouse capture,
which was subsequently loss due to "external" event, for example when a dialog which was subsequently lost due to an "external" event (for example, when a dialog
box is shown or if another application captures the mouse. box is shown or if another application captures the mouse).
If this happens, this event is sent to all windows that are on capture stack If this happens, this event is sent to all windows that are on the capture stack
(i.e. called CaptureMouse, but didn't call ReleaseMouse yet). The event is (i.e. called CaptureMouse, but didn't call ReleaseMouse yet). The event is
not sent if the capture changes because of a call to CaptureMouse or not sent if the capture changes because of a call to CaptureMouse or
ReleaseMouse. ReleaseMouse.