From e78e7d325b85a96851615ae0199d3465b5d394c3 Mon Sep 17 00:00:00 2001 From: Kevin Funk Date: Mon, 10 Sep 2012 11:08:37 +0200 Subject: Fix build of tests/ on Windows CE Remove some subprojects that have missing dependencies or use API that is non-available on Windows CE. Change-Id: Iad7118b95a691a433c3f798d56a6a069e5e41917 Reviewed-by: Qt Doc Bot Reviewed-by: Andreas Holzammer Reviewed-by: Friedemann Kleint --- tests/manual/qgraphicsitemgroup/customitem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/manual/qgraphicsitemgroup') 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 CustomScene::selectedCustomGroups() const QList groups; foreach (QGraphicsItem *item, all) { - CustomGroup* group = dynamic_cast(item); + CustomGroup* group = qgraphicsitem_cast(item); if (group) groups.append(group); } @@ -65,7 +65,7 @@ QList CustomScene::selectedCustomItems() const QList items; foreach (QGraphicsItem *item, all) { - CustomItem* citem = dynamic_cast(item); + CustomItem* citem = qgraphicsitem_cast(item); if (citem) items.append(citem); } -- cgit v1.2.3