aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/types/qqmltimer.cpp
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2014-03-09 13:02:01 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-11 14:21:18 +0100
commit0e09aa0f2b64e8f62703a34018352cc3fa18fffc (patch)
treecbc458d03e85c9c7ad445f8e51d750ca35c50873 /src/qml/types/qqmltimer.cpp
parent59fa9e3bb49ccdf1a764599aab63950bf156c370 (diff)
Doc: Qt QML: Document signals (not handlers) under \qmlsignal
Task-number: QTBUG-35846 Change-Id: I989617865a79bfbf1f1ffd3b105598025dde54c5 Reviewed-by: Mitch Curtis <mitch.curtis@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/qml/types/qqmltimer.cpp')
-rw-r--r--src/qml/types/qqmltimer.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qml/types/qqmltimer.cpp b/src/qml/types/qqmltimer.cpp
index 32018c1f03..b9e28b881c 100644
--- a/src/qml/types/qqmltimer.cpp
+++ b/src/qml/types/qqmltimer.cpp
@@ -302,9 +302,11 @@ void QQmlTimer::componentComplete()
}
/*!
- \qmlsignal QtQml::Timer::onTriggered()
+ \qmlsignal QtQml::Timer::triggered()
- This handler is called when the Timer is triggered.
+ This signal is emitted when the Timer times out.
+
+ The corresponding handler is \c onTriggered.
*/
void QQmlTimer::ticked()
{