diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-07-22 05:50:23 (GMT) |
---|---|---|
committer | Lars Knoll <lars.knoll@nokia.com> | 2009-07-22 05:50:23 (GMT) |
commit | 8dc527a3837c937630c8bbbab034b8bc84d496fb (patch) | |
tree | f8298c79cdd71e065889c3820a472364d8e946f9 /src/declarative/extra | |
parent | 0e1c97f5835ace6ce52ef6a1ae23f8e4463ba742 (diff) | |
download | Qt-8dc527a3837c937630c8bbbab034b8bc84d496fb.zip Qt-8dc527a3837c937630c8bbbab034b8bc84d496fb.tar.gz Qt-8dc527a3837c937630c8bbbab034b8bc84d496fb.tar.bz2 |
Remove an unused method in QFxItem
propertyInfo was not used by anything, let's just
get rid of it.
Diffstat (limited to 'src/declarative/extra')
-rw-r--r-- | src/declarative/extra/qfxparticles.cpp | 6 | ||||
-rw-r--r-- | src/declarative/extra/qfxparticles.h | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/declarative/extra/qfxparticles.cpp b/src/declarative/extra/qfxparticles.cpp index 08d38ba..a7b01dd 100644 --- a/src/declarative/extra/qfxparticles.cpp +++ b/src/declarative/extra/qfxparticles.cpp @@ -1041,12 +1041,6 @@ void QFxParticles::setMotion(QFxParticleMotion *motion) d->motion = motion; } -QString QFxParticles::propertyInfo() const -{ - Q_D(const QFxParticles); - return d->url.toString(); -} - void QFxParticlesPainter::updateSize() { const int parentX = parentItem()->x(); diff --git a/src/declarative/extra/qfxparticles.h b/src/declarative/extra/qfxparticles.h index 9f085cd..2574f7f 100644 --- a/src/declarative/extra/qfxparticles.h +++ b/src/declarative/extra/qfxparticles.h @@ -203,8 +203,6 @@ public: QFxParticleMotion *motion() const; void setMotion(QFxParticleMotion *); - virtual QString propertyInfo() const; - void paintContents(QPainter &p); protected: |