]> git.saurik.com Git - wxWidgets.git/commitdiff
Slightly improve wxMouseCaptureLostEvent documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Mar 2011 11:57:10 +0000 (11:57 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Mar 2011 11:57:10 +0000 (11:57 +0000)
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

interface/wx/event.h

index 3a8043001bea4670e6d7db9f3a8f901f696f5d48..531a4f4b8a4509d4db51709b99f7df16d230db0b 100644 (file)
@@ -2906,11 +2906,11 @@ public:
 /**
     @class wxMouseCaptureLostEvent
 
-    An mouse capture lost event is sent to a window that obtained mouse capture,
-    which was subsequently loss due to "external" event, for example when a dialog
-    box is shown or if another application captures the mouse.
+    A mouse capture lost event is sent to a window that had obtained mouse capture,
+    which was subsequently lost due to an "external" event (for example, when a dialog
+    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
     not sent if the capture changes because of a call to CaptureMouse or
     ReleaseMouse.