summaryrefslogtreecommitdiffstats
path: root/tests/manual/qgraphicsitemgroup
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qgraphicsitemgroup')
-rw-r--r--tests/manual/qgraphicsitemgroup/customitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/qgraphicsitemgroup/customitem.cpp b/tests/manual/qgraphicsitemgroup/customitem.cpp
index eab218e9a0..f0bc74db68 100644
--- a/tests/manual/qgraphicsitemgroup/customitem.cpp
+++ b/tests/manual/qgraphicsitemgroup/customitem.cpp
@@ -51,7 +51,7 @@ QList<CustomGroup*> CustomScene::selectedCustomGroups() const
QList<CustomGroup*> groups;
foreach (QGraphicsItem *item, all) {
- CustomGroup* group = dynamic_cast<CustomGroup*>(item);
+ CustomGroup* group = qgraphicsitem_cast<CustomGroup*>(item);
if (group)
groups.append(group);
}
@@ -65,7 +65,7 @@ QList<CustomItem*> CustomScene::selectedCustomItems() const
QList<CustomItem*> items;
foreach (QGraphicsItem *item, all) {
- CustomItem* citem = dynamic_cast<CustomItem*>(item);
+ CustomItem* citem = qgraphicsitem_cast<CustomItem*>(item);
if (citem)
items.append(citem);
}