summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2009-07-27 10:24:21 (GMT)
committerLars Knoll <lars.knoll@nokia.com>2009-07-29 03:47:23 (GMT)
commit1fa49662fa7f05d3d7933a3c636ad996fab68118 (patch)
tree52fe8cd7f778233f6ef0c37a532f1b91d683a930
parent1a781d12fb06541fe921e1506b28007b34494a9e (diff)
downloadQt-1fa49662fa7f05d3d7933a3c636ad996fab68118.zip
Qt-1fa49662fa7f05d3d7933a3c636ad996fab68118.tar.gz
Qt-1fa49662fa7f05d3d7933a3c636ad996fab68118.tar.bz2
QGraphicsAxis is gone
Also clean up a now unused method.
-rw-r--r--src/declarative/fx/qfxitem.cpp9
-rw-r--r--src/declarative/fx/qfxitem.h2
2 files changed, 0 insertions, 11 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp
index 0cc1fbc..5978e73 100644
--- a/src/declarative/fx/qfxitem.cpp
+++ b/src/declarative/fx/qfxitem.cpp
@@ -76,7 +76,6 @@ QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,Item,QFxItem)
QML_DEFINE_NOCREATE_TYPE(QGraphicsTransform);
QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,Scale,QGraphicsScale)
-QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,Axis,QGraphicsAxis)
QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,Rotation,QGraphicsRotation)
QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,Rotation3D,QGraphicsRotation3D)
@@ -1778,14 +1777,6 @@ void QFxItem::componentComplete()
d->anchors()->d_func()->updateOnComplete();
}
-/*!
- \internal
-*/
-void QFxItem::transformChanged(const QTransform &)
-{
- // ### FIXME
-}
-
QmlStateGroup *QFxItemPrivate::states()
{
Q_Q(QFxItem);
diff --git a/src/declarative/fx/qfxitem.h b/src/declarative/fx/qfxitem.h
index f4051e5..4837881 100644
--- a/src/declarative/fx/qfxitem.h
+++ b/src/declarative/fx/qfxitem.h
@@ -275,7 +275,6 @@ protected:
virtual bool mouseFilter(QGraphicsSceneMouseEvent *);
virtual void mouseUngrabEvent();
- virtual void transformChanged(const QTransform &);
virtual void classBegin();
virtual void classComplete();
virtual void componentComplete();
@@ -329,7 +328,6 @@ QML_DECLARE_TYPE(QFxContents)
QML_DECLARE_TYPE(QFxItem)
QML_DECLARE_TYPE(QGraphicsTransform)
QML_DECLARE_TYPE(QGraphicsScale)
-QML_DECLARE_TYPE(QGraphicsAxis)
QML_DECLARE_TYPE(QGraphicsRotation)
QML_DECLARE_TYPE(QGraphicsRotation3D)