call Applet::sceneEventFilter; otherwise applet handles are broken on Applets that are also Containments

BUG:277467
This commit is contained in:
Aaron Seigo 2011-07-19 09:37:55 +02:00
parent b35d410deb
commit 9f03a10b4d

View File

@ -1680,9 +1680,7 @@ void Containment::wheelEvent(QGraphicsSceneWheelEvent *event)
bool Containment::sceneEventFilter(QGraphicsItem *watched, QEvent *event)
{
Q_UNUSED(watched)
Q_UNUSED(event)
return false;
return Applet::sceneEventFilter(watched, event);
}
QVariant Containment::itemChange(GraphicsItemChange change, const QVariant &value)