]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove mentions of wxCommandEvent from wxThreadEvent documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 23 Jul 2011 12:01:26 +0000 (12:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 23 Jul 2011 12:01:26 +0000 (12:01 +0000)
wxThreadEvent doesn't derive from wxCommandEvent any more so don't say that it
does.

Also fix some grammar/wording.

Closes #13359.

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

interface/wx/event.h

index d3ad26b2315099dc50afd01089bc569406b6108e..2352752d1055ab7308c8657931b05aba6ce4fbf4 100644 (file)
@@ -3023,13 +3023,13 @@ public:
 /**
     @class wxThreadEvent
 
-    This class adds some simple functionalities to wxCommandEvent conceived
-    for inter-threads communications.
+    This class adds some simple functionality to wxEvent to facilitate
+    inter-thread communication.
 
-    This event is not natively emitted by any control/class: this is just
-    an helper class for the user.
+    This event is not natively emitted by any control/class: it is just
+    a helper class for the user.
     Its most important feature is the GetEventCategory() implementation which
-    allows thread events to @b NOT be processed by wxEventLoopBase::YieldFor calls
+    allows thread events @b NOT to be processed by wxEventLoopBase::YieldFor calls
     (unless the @c wxEVT_CATEGORY_THREAD is specified - which is never in wx code).
 
     @library{wxcore}