From 8f2da7cd63b51e08c4b662d85152b840e9bc78fb Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 1 Dec 2011 09:24:38 +0100 Subject: Polish QWinEventNotifier. Fix docs, remove redundant Q_DISABLE_COPY. Change-Id: I8398fb71bced5ac6f7eb8613cd2f8d10c325f056 Reviewed-by: Bradley T. Hughes Reviewed-by: Friedemann Kleint --- src/corelib/kernel/qwineventnotifier.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/corelib/kernel/qwineventnotifier.cpp') diff --git a/src/corelib/kernel/qwineventnotifier.cpp b/src/corelib/kernel/qwineventnotifier.cpp index 55daeaa579..1ef77cdf62 100644 --- a/src/corelib/kernel/qwineventnotifier.cpp +++ b/src/corelib/kernel/qwineventnotifier.cpp @@ -48,12 +48,12 @@ QT_BEGIN_NAMESPACE -/* +/*! \class QWinEventNotifier \brief The QWinEventNotifier class provides support for the Windows Wait functions. The QWinEventNotifier class makes it possible to use the wait - functions on windows in a asynchronous manner. With this class + functions on windows in a asynchronous manner. With this class, you can register a HANDLE to an event and get notification when that event becomes signalled. The state of the event is not modified in the process so if it is a manual reset event you will need to @@ -68,7 +68,7 @@ QT_BEGIN_NAMESPACE The setEnabled() function allows you to disable as well as enable the event notifier. It is generally advisable to explicitly enable or disable the event notifier. A disabled notifier does nothing when the - event object is signalled(the same effect as not creating the + event object is signalled (the same effect as not creating the event notifier). Use the isEnabled() function to determine the notifier's current status. @@ -80,7 +80,7 @@ QT_BEGIN_NAMESPACE certain other objects which are so-called synchronization objects, such as Processes, Threads, Waitable timers. - \warning This Class is only available on Windows. + \warning This class is only available on Windows. */ /*! @@ -198,7 +198,8 @@ void QWinEventNotifier::setEnabled(bool enable) eventDispatcher->unregisterEventNotifier(this); } -/*!\reimp +/*! + \reimp */ bool QWinEventNotifier::event(QEvent * e) -- cgit v1.2.3