Call the immediate parent's version rather than skipping to QGraphicsItem's

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=743925
This commit is contained in:
Jason Stubbs 2007-12-02 11:30:48 +00:00
parent 89a387b76d
commit 4627a3770c

View File

@ -1252,7 +1252,7 @@ QVariant Applet::itemChange(GraphicsItemChange change, const QVariant &value)
break;
};
return QGraphicsItem::itemChange(change, value);
return Widget::itemChange(change, value);
}
void Applet::setGeometry(const QRectF& geometry)