summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-05-06 04:29:27 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-05-06 04:30:13 (GMT)
commitf95a53ec1f88f819424aa3e894f91c1b875fd749 (patch)
tree400772e6cff0894ae63fcae2b21799803168270a /src
parent2dfa4fbcdc901b8cdd8df0087ecf5e3fa2523603 (diff)
downloadQt-f95a53ec1f88f819424aa3e894f91c1b875fd749.zip
Qt-f95a53ec1f88f819424aa3e894f91c1b875fd749.tar.gz
Qt-f95a53ec1f88f819424aa3e894f91c1b875fd749.tar.bz2
Make sure to call base class implementation.
Diffstat (limited to 'src')
-rw-r--r--src/declarative/graphicsitems/qdeclarativepainteditem.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepainteditem.cpp b/src/declarative/graphicsitems/qdeclarativepainteditem.cpp
index 6430fae..ce9b69f 100644
--- a/src/declarative/graphicsitems/qdeclarativepainteditem.cpp
+++ b/src/declarative/graphicsitems/qdeclarativepainteditem.cpp
@@ -210,6 +210,7 @@ void QDeclarativePaintedItem::geometryChanged(const QRectF &newGeometry,
if (newGeometry.width() != oldGeometry.width() ||
newGeometry.height() != oldGeometry.height())
clearCache();
+ QDeclarativeItem::geometryChanged(newGeometry, oldGeometry);
}
QVariant QDeclarativePaintedItem::itemChange(GraphicsItemChange change,