diff options
-rw-r--r-- | src/corelib/kernel/qcoreevent.cpp | 3 | ||||
-rw-r--r-- | src/corelib/statemachine/qactionstate.cpp | 2 | ||||
-rw-r--r-- | src/corelib/statemachine/qtransition.cpp | 2 | ||||
-rw-r--r-- | src/gui/statemachine/qmouseeventtransition.cpp | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/src/corelib/kernel/qcoreevent.cpp b/src/corelib/kernel/qcoreevent.cpp index 3fcfc98..fc1cefb 100644 --- a/src/corelib/kernel/qcoreevent.cpp +++ b/src/corelib/kernel/qcoreevent.cpp @@ -263,6 +263,9 @@ QT_BEGIN_NAMESPACE \omitvalue NetworkReplyUpdated \omitvalue FutureCallOut \omitvalue CocoaRequestModal + \omitvalue Bound + \omitvalue Signal + \omitvalue StateFinished */ /*! diff --git a/src/corelib/statemachine/qactionstate.cpp b/src/corelib/statemachine/qactionstate.cpp index 77fd036..7f44994 100644 --- a/src/corelib/statemachine/qactionstate.cpp +++ b/src/corelib/statemachine/qactionstate.cpp @@ -151,7 +151,7 @@ QActionState::~QActionState() create a QStateInvokeMethodAction object and add it to the entry actions of the state. - \sa invokeMethodOnExit(), setPropertyOnEntry(), addEntryAction() + \sa invokeMethodOnExit(), addEntryAction() */ void QActionState::invokeMethodOnEntry(QObject *object, const char *method, const QList<QVariant> &arguments) diff --git a/src/corelib/statemachine/qtransition.cpp b/src/corelib/statemachine/qtransition.cpp index 3becc3a..debfd21 100644 --- a/src/corelib/statemachine/qtransition.cpp +++ b/src/corelib/statemachine/qtransition.cpp @@ -157,8 +157,6 @@ QTransition::~QTransition() object with the given \a arguments when the transition is taken. This function will create a QStateInvokeMethodAction object and add it to the actions of the transition. - - \sa setPropertyOnTransition() */ void QTransition::invokeMethodOnTransition(QObject *object, const char *method, const QList<QVariant> &arguments) diff --git a/src/gui/statemachine/qmouseeventtransition.cpp b/src/gui/statemachine/qmouseeventtransition.cpp index 1621c78..e16cb38 100644 --- a/src/gui/statemachine/qmouseeventtransition.cpp +++ b/src/gui/statemachine/qmouseeventtransition.cpp @@ -103,7 +103,7 @@ Qt::MouseButton QMouseEventTransition::button() const } /*! - Sets the button that this mouse event transition will check for. + Sets the \a button that this mouse event transition will check for. */ void QMouseEventTransition::setButton(Qt::MouseButton button) { |