summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-10-16 11:08:13 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-19 00:44:54 +0200
commitbb73c085a6092ea10c60e652cb66d8c369cfb65e (patch)
treee06d5f2b88164ff34ddb46f2a1f10f76f7a8fd7c /tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
parent0783b1670d5862b51747b0246a222878ff3b9c44 (diff)
normalise signal/slot signatures [QtWidgets tests]
Change-Id: Iffab60f0911a55e4be09faeb29df0bae1ea2eb19 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp')
-rw-r--r--tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp b/tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
index c5cf8b0056..70ebd3c8a7 100644
--- a/tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
+++ b/tests/auto/widgets/graphicsview/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
@@ -189,10 +189,10 @@ void tst_QGraphicsSceneIndex::connectedToSceneRectChanged()
};
MyScene scene; // Uses QGraphicsSceneBspTreeIndex by default.
- QCOMPARE(scene.receivers(SIGNAL(sceneRectChanged(const QRectF&))), 1);
+ QCOMPARE(scene.receivers(SIGNAL(sceneRectChanged(QRectF))), 1);
scene.setItemIndexMethod(QGraphicsScene::NoIndex); // QGraphicsSceneLinearIndex
- QCOMPARE(scene.receivers(SIGNAL(sceneRectChanged(const QRectF&))), 1);
+ QCOMPARE(scene.receivers(SIGNAL(sceneRectChanged(QRectF))), 1);
}
void tst_QGraphicsSceneIndex::items()