fix setTargetItem

svn path=/trunk/KDE/kdelibs/; revision=1017598
This commit is contained in:
Marco Martin 2009-08-30 23:52:13 +00:00
parent eab10293a8
commit 43506a6962

View File

@ -99,7 +99,7 @@ void ItemBackground::setTarget(const QRectF &newGeometry)
void ItemBackground::setTargetItem(QGraphicsItem *target)
{
QRectF rect = target->boundingRect();
rect.setTopLeft(target->pos());
rect.moveTopLeft(target->pos());
setTarget(rect);
}