diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-05-08 03:42:02 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-05-08 03:42:02 (GMT) |
commit | 309de75f1e0ce2e85b2f58e34b876f902c9d0292 (patch) | |
tree | d52850eec784171870dfed79e46fe4857ca6db30 /src/declarative/fx/qfxtransform.cpp | |
parent | d3b4366dd383400e5804eff07c4d226abf06c977 (diff) | |
download | Qt-309de75f1e0ce2e85b2f58e34b876f902c9d0292.zip Qt-309de75f1e0ce2e85b2f58e34b876f902c9d0292.tar.gz Qt-309de75f1e0ce2e85b2f58e34b876f902c9d0292.tar.bz2 |
Fix warning.
Diffstat (limited to 'src/declarative/fx/qfxtransform.cpp')
-rw-r--r-- | src/declarative/fx/qfxtransform.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxtransform.cpp b/src/declarative/fx/qfxtransform.cpp index 15edc5f..289333c 100644 --- a/src/declarative/fx/qfxtransform.cpp +++ b/src/declarative/fx/qfxtransform.cpp @@ -180,7 +180,7 @@ void QFxAxis::setEndZ(qreal z) } QFxRotation::QFxRotation(QObject *parent) -: QFxTransform(parent), _angle(0), _originX(0), _originY(0), _dirty(true) +: QFxTransform(parent), _originX(0), _originY(0), _angle(0), _dirty(true) { } |