Q{Chrono,}Timer: de-duplicate API docs

Change-Id: Ib88d89e5f8dae4a834467c05e2e5fa6983e7cd76
Reviewed-by: André Hartmann <aha_1980@gmx.de>
(cherry picked from commit 46b8da642b9016c84d0cba12dab9bae3fba24ae4)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Ahmad Samir 2024-08-03 03:46:21 +03:00 committed by Qt Cherry-pick Bot
parent 32b0ff2124
commit 9c64b6a201
2 changed files with 12 additions and 8 deletions

View File

@ -181,8 +181,10 @@ Qt::TimerId QChronoTimer::id() const
Starts or restarts the timer with the timeout specified in \l interval.
//! [stop-restart-timer]
If the timer is already running, it will be
\l{QChronoTimer::stop()}{stopped} and restarted.
//! [stop-restart-timer]
If \l singleShot is true, the timer will be activated only once.
*/

View File

@ -202,10 +202,14 @@ Qt::TimerId QTimer::id() const
Starts or restarts the timer with the timeout specified in \l interval.
//! [stop-restart-timer]
If the timer is already running, it will be
\l{QTimer::stop()}{stopped} and restarted.
//! [stop-restart-timer]
//! [singleshot-activation]
If \l singleShot is true, the timer will be activated only once.
//! [singleshot-activation]
*/
void QTimer::start()
{
@ -224,11 +228,10 @@ void QTimer::start()
Starts or restarts the timer with a timeout interval of \a msec
milliseconds.
If the timer is already running, it will be
\l{QTimer::stop()}{stopped} and restarted.
\include qtimer.cpp stop-restart-timer
If \l singleShot is true, the timer will be activated only once. This is
equivalent to:
\include qtimer.cpp singleshot-activation
This is equivalent to:
\code
timer.setInterval(msec);
@ -521,11 +524,10 @@ void QTimer::singleShot(std::chrono::milliseconds msec, Qt::TimerType timerType,
Starts or restarts the timer with a timeout of duration \a msec milliseconds.
If the timer is already running, it will be
\l{QTimer::stop()}{stopped} and restarted.
\include qtimer.cpp stop-restart-timer
If \l singleShot is true, the timer will be activated only once. This is
equivalent to:
\include qtimer.cpp singleshot-activation
This is equivalent to:
\code
timer.setInterval(msec);