summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qtimeline.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2015-04-17 10:29:04 +0200
committerMartin Smith <martin.smith@digia.com>2015-04-20 06:25:20 +0000
commit6526a4e1367fa134ff29952fcbdd0d7cc937003f (patch)
tree08b645d922d4339a497f882600c6b1f207f0f5c2 /src/corelib/tools/qtimeline.h
parentd0c96c65ec5e25b1b43885a8c32a886a9b6aa834 (diff)
qdoc: Remove #ifdef Q_QDOC for uses of QPrivateSignal
Signals marked with QPrivateSignal had the QPrivateSignal marker ifdefed out for qdoc. This is no longer necessary, so the #ifdefs are removed. Change-Id: Idb334ed311c6ed6883d7b7b5a3fcdede60c4a1f8 Task-number: QTBUG-45535 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'src/corelib/tools/qtimeline.h')
-rw-r--r--src/corelib/tools/qtimeline.h24
1 files changed, 4 insertions, 20 deletions
diff --git a/src/corelib/tools/qtimeline.h b/src/corelib/tools/qtimeline.h
index 388e88d641..21139b37a8 100644
--- a/src/corelib/tools/qtimeline.h
+++ b/src/corelib/tools/qtimeline.h
@@ -115,26 +115,10 @@ public Q_SLOTS:
void toggleDirection();
Q_SIGNALS:
- void valueChanged(qreal x
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void frameChanged(int
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void stateChanged(QTimeLine::State newState
-#if !defined(Q_QDOC)
- , QPrivateSignal
-#endif
- );
- void finished(
-#if !defined(Q_QDOC)
- QPrivateSignal
-#endif
- );
+ void valueChanged(qreal x, QPrivateSignal);
+ void frameChanged(int, QPrivateSignal);
+ void stateChanged(QTimeLine::State newState, QPrivateSignal);
+ void finished(QPrivateSignal);
protected:
void timerEvent(QTimerEvent *event) Q_DECL_OVERRIDE;