aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2020-02-12 11:07:48 +0100
committerTopi Reinio <topi.reinio@qt.io>2020-03-10 09:36:07 +0100
commit4034eea1ecd1b405363033567f70e62791705c0d (patch)
treeeedbc04c56315c558778a01364dc065a7c23d8b5 /src/imports
parent508a8baf850dbad59fc0578356d1a9327f27e911 (diff)
Remove hard-coded notes for 'Corresponding handler' for QML signals
QDoc will generate these notes automatically. Task-number: QTBUG-37355 Change-Id: I8ed058ecbbcc630ad0351f6ce167c3fa61936f6f Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/imports')
-rw-r--r--src/imports/statemachine/signaltransition.cpp2
-rw-r--r--src/imports/statemachine/state.cpp7
-rw-r--r--src/imports/statemachine/statemachine.cpp4
3 files changed, 0 insertions, 13 deletions
diff --git a/src/imports/statemachine/signaltransition.cpp b/src/imports/statemachine/signaltransition.cpp
index 468f2020c7..69edaa4e48 100644
--- a/src/imports/statemachine/signaltransition.cpp
+++ b/src/imports/statemachine/signaltransition.cpp
@@ -268,8 +268,6 @@ void SignalTransitionParser::applyBindings(
\qmlsignal QAbstractTransition::triggered()
This signal is emitted when the transition has been triggered.
-
- The corresponding handler is \c onTriggered.
*/
/*!
diff --git a/src/imports/statemachine/state.cpp b/src/imports/statemachine/state.cpp
index 10530c2985..ff0f55f197 100644
--- a/src/imports/statemachine/state.cpp
+++ b/src/imports/statemachine/state.cpp
@@ -97,8 +97,6 @@ QQmlListProperty<QObject> State::children()
This signal is emitted when the State becomes active.
- The corresponding handler is \c onEntered.
-
\sa active, exited
*/
@@ -107,8 +105,6 @@ QQmlListProperty<QObject> State::children()
This signal is emitted when the State becomes inactive.
- The corresponding handler is \c onExited.
-
\sa active, entered
*/
@@ -121,7 +117,6 @@ QQmlListProperty<QObject> State::children()
\brief Provides a general-purpose state for StateMachine.
-
State objects can have child states as well as transitions to other
states. State is part of \l{The Declarative State Machine Framework}.
@@ -180,8 +175,6 @@ QQmlListProperty<QObject> State::children()
This signal is emitted when a final child state of this state is entered.
- The corresponding handler is \c onFinished.
-
\sa QAbstractState::active, QAbstractState::entered, QAbstractState::exited
*/
diff --git a/src/imports/statemachine/statemachine.cpp b/src/imports/statemachine/statemachine.cpp
index bdad2e6bde..de6c84227d 100644
--- a/src/imports/statemachine/statemachine.cpp
+++ b/src/imports/statemachine/statemachine.cpp
@@ -211,8 +211,6 @@ QQmlListProperty<QObject> StateMachine::children()
This signal is emitted when the state machine has entered its initial state
(State::initialState).
- The corresponding handler is \c onStarted.
-
\sa running, start(), State::finished
*/
@@ -230,8 +228,6 @@ QQmlListProperty<QObject> StateMachine::children()
This signal is emitted when the state machine has stopped.
- The corresponding handler is \c onStopped.
-
\sa running, stop(), State::finished
*/