summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxitem.cpp
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-08-05 00:23:26 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-08-05 00:23:26 (GMT)
commit2472959ba8c0dbd404ab038710e5df74723a1780 (patch)
treec867a4f8cb3150c94ae8554e26e612af0527d311 /src/declarative/fx/qfxitem.cpp
parent7e268329fb6345d92765e2d8f531ecc5dcc51219 (diff)
downloadQt-2472959ba8c0dbd404ab038710e5df74723a1780.zip
Qt-2472959ba8c0dbd404ab038710e5df74723a1780.tar.gz
Qt-2472959ba8c0dbd404ab038710e5df74723a1780.tar.bz2
More QFxItem cleanup.
Diffstat (limited to 'src/declarative/fx/qfxitem.cpp')
-rw-r--r--src/declarative/fx/qfxitem.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp
index 2d3fa8d..d5c231b 100644
--- a/src/declarative/fx/qfxitem.cpp
+++ b/src/declarative/fx/qfxitem.cpp
@@ -1619,10 +1619,7 @@ QPointF QFxItemPrivate::computeTransformOrigin() const
bool QFxItem::sceneEvent(QEvent *event)
{
- bool rv = QGraphicsItem::sceneEvent(event);
- if (event->type() == QEvent::UngrabMouse)
- mouseUngrabEvent();
- return rv;
+ return QGraphicsItem::sceneEvent(event);
}
QVariant QFxItem::itemChange(GraphicsItemChange change,
@@ -1635,10 +1632,6 @@ QVariant QFxItem::itemChange(GraphicsItemChange change,
return QGraphicsItem::itemChange(change, value);
}
-void QFxItem::mouseUngrabEvent()
-{
-}
-
QRectF QFxItem::boundingRect() const
{
Q_D(const QFxItem);