diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-07-15 05:45:46 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-07-15 05:45:46 (GMT) |
commit | 11ec67108d56dc29631ddbd90be840021d83f6c1 (patch) | |
tree | 8e3e85c8b00ea40402fc4c2a28041373063535eb /src/declarative/fx/qfxitem.cpp | |
parent | da80537b388677fcc9199d04237637669ba6af54 (diff) | |
download | Qt-11ec67108d56dc29631ddbd90be840021d83f6c1.zip Qt-11ec67108d56dc29631ddbd90be840021d83f6c1.tar.gz Qt-11ec67108d56dc29631ddbd90be840021d83f6c1.tar.bz2 |
Fix warnings.
Diffstat (limited to 'src/declarative/fx/qfxitem.cpp')
-rw-r--r-- | src/declarative/fx/qfxitem.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp index 4650212..3386faf 100644 --- a/src/declarative/fx/qfxitem.cpp +++ b/src/declarative/fx/qfxitem.cpp @@ -2178,13 +2178,11 @@ QPointF QFxItem::transformOriginPoint() const qreal QFxItem::z() const { - Q_D(const QFxItem); return zValue(); } void QFxItem::setX(qreal x) { - Q_D(QFxItem); if (x == this->x()) return; @@ -2517,7 +2515,6 @@ void QFxItem::setOptions(Options options, bool set) */ void QFxItem::setParent(QFxItem *p) { - Q_D(QFxItem); if (p == parent() || !p) return; QObject::setParent(p); |