Remove mentions of wxCommandEvent from wxThreadEvent documentation.

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
This commit is contained in:
Vadim Zeitlin 2011-07-23 12:01:26 +00:00
parent 04a00346c6
commit 5d4a050443

View 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}