diff options
Diffstat (limited to 'src/corelib/tools/qtimeline.h')
-rw-r--r-- | src/corelib/tools/qtimeline.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/corelib/tools/qtimeline.h b/src/corelib/tools/qtimeline.h index 48c9232..18c3980 100644 --- a/src/corelib/tools/qtimeline.h +++ b/src/corelib/tools/qtimeline.h @@ -42,7 +42,6 @@ #ifndef QTIMELINE_H #define QTIMELINE_H -#include <QtCore/qeasingcurve.h> #include <QtCore/qobject.h> QT_BEGIN_HEADER @@ -61,7 +60,6 @@ class Q_CORE_EXPORT QTimeLine : public QObject Q_PROPERTY(Direction direction READ direction WRITE setDirection) Q_PROPERTY(int loopCount READ loopCount WRITE setLoopCount) Q_PROPERTY(CurveShape curveShape READ curveShape WRITE setCurveShape) - Q_PROPERTY(QEasingCurve easingCurve READ easingCurve WRITE setEasingCurve) public: enum State { NotRunning, @@ -107,9 +105,6 @@ public: CurveShape curveShape() const; void setCurveShape(CurveShape shape); - QEasingCurve easingCurve() const; - void setEasingCurve(const QEasingCurve &curve); - int currentTime() const; int currentFrame() const; qreal currentValue() const; |