summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2021-06-24 10:40:18 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-06-24 19:51:51 +0000
commitc905f771c1c578488a7c26de1ccff6ce784e5bfb (patch)
tree81fcce9006e25a246847463a97e27f038c7a12b4 /src/corelib/tools
parentc339100f0ad7e5ccec4cdc30ff35a98104a6826f (diff)
Consistent indentation for BINDABLE properties
Triggered by API review in Gerrit patch 355960. Task-number: QTBUG-94407 Change-Id: I7cafc1cc9d4b929040b53c6bf92c91d73c3b39f2 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> (cherry picked from commit 4b850065b1631437b65542b3cb1c16077d2f0230) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qtimeline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qtimeline.h b/src/corelib/tools/qtimeline.h
index 48a06f06df..464c4a8836 100644
--- a/src/corelib/tools/qtimeline.h
+++ b/src/corelib/tools/qtimeline.h
@@ -56,12 +56,12 @@ class Q_CORE_EXPORT QTimeLine : public QObject
Q_OBJECT
Q_PROPERTY(int duration READ duration WRITE setDuration BINDABLE bindableDuration)
Q_PROPERTY(int updateInterval READ updateInterval WRITE setUpdateInterval
- BINDABLE bindableUpdateInterval)
+ BINDABLE bindableUpdateInterval)
Q_PROPERTY(int currentTime READ currentTime WRITE setCurrentTime BINDABLE bindableCurrentTime)
Q_PROPERTY(Direction direction READ direction WRITE setDirection BINDABLE bindableDirection)
Q_PROPERTY(int loopCount READ loopCount WRITE setLoopCount BINDABLE bindableLoopCount)
Q_PROPERTY(QEasingCurve easingCurve READ easingCurve WRITE setEasingCurve
- BINDABLE bindableEasingCurve)
+ BINDABLE bindableEasingCurve)
public:
enum State {
NotRunning,