diff --git a/tests/auto/quickcontrols/qquickcontextmenu/tst_qquickcontextmenu.cpp b/tests/auto/quickcontrols/qquickcontextmenu/tst_qquickcontextmenu.cpp index 5b40fc56d6..3d8cb630b3 100644 --- a/tests/auto/quickcontrols/qquickcontextmenu/tst_qquickcontextmenu.cpp +++ b/tests/auto/quickcontrols/qquickcontextmenu/tst_qquickcontextmenu.cpp @@ -175,7 +175,7 @@ void tst_QQuickContextMenu::tapHandler() const auto *tapHandler = window->findChild("tapHandler"); QVERIFY(tapHandler); - const QSignalSpy tappedSpy(tapHandler, SIGNAL(tapped(QEventPoint, Qt::MouseButton))); + const QSignalSpy tappedSpy(tapHandler, SIGNAL(tapped(QEventPoint,Qt::MouseButton))); QVERIFY(tappedSpy.isValid()); const QPoint &windowCenter = mapCenterToWindow(window->contentItem()); @@ -307,7 +307,7 @@ void tst_QQuickContextMenu::menuItemShouldntTriggerOnRelease() // QTBUG-133302 auto *tomatoItem = window->findChild("tomato"); QVERIFY(tomatoItem); - QSignalSpy triggeredSpy(window, SIGNAL(triggered(QObject *))); + QSignalSpy triggeredSpy(window, SIGNAL(triggered(QObject*))); QVERIFY(triggeredSpy.isValid()); const QPoint &tomatoCenter = mapCenterToWindow(tomatoItem); diff --git a/tests/auto/quickcontrols/qquickheaderview/tst_qquickheaderview.cpp b/tests/auto/quickcontrols/qquickheaderview/tst_qquickheaderview.cpp index 0f19382faf..8d7db61c41 100644 --- a/tests/auto/quickcontrols/qquickheaderview/tst_qquickheaderview.cpp +++ b/tests/auto/quickcontrols/qquickheaderview/tst_qquickheaderview.cpp @@ -494,7 +494,7 @@ void tst_QQuickHeaderView::dragInvalidItemDuringReorder() const auto item = hhv->itemAtIndex(hhv->index(0, 0)); QQuickWindow *itemWindow = item->window(); - QSignalSpy columnMovedSpy(hhv, SIGNAL(columnMoved(int, int, int))); + QSignalSpy columnMovedSpy(hhv, SIGNAL(columnMoved(int,int,int))); QVERIFY(columnMovedSpy.isValid()); const QPoint localPos = QPoint(item->width() - 5, item->height() - 5); @@ -561,7 +561,7 @@ void tst_QQuickHeaderView::reorderEmptyModel() auto hhv = window->findChild("horizontalHeader"); QVERIFY(hhv); - QSignalSpy columnMovedSpy(hhv, SIGNAL(columnMoved(int, int, int))); + QSignalSpy columnMovedSpy(hhv, SIGNAL(columnMoved(int,int,int))); QVERIFY(columnMovedSpy.isValid()); hhv->moveColumn(0, 1); QVERIFY(!columnMovedSpy.isEmpty()); diff --git a/tests/auto/quickcontrols/qquickoverlay/tst_qquickoverlay.cpp b/tests/auto/quickcontrols/qquickoverlay/tst_qquickoverlay.cpp index 09e5c3eb32..6458f5b97f 100644 --- a/tests/auto/quickcontrols/qquickoverlay/tst_qquickoverlay.cpp +++ b/tests/auto/quickcontrols/qquickoverlay/tst_qquickoverlay.cpp @@ -247,7 +247,7 @@ void tst_QQuickOverlay::pressedAndReleased() auto *tapHandler = window->findChild(); QVERIFY(tapHandler); - const QSignalSpy tappedSpy(tapHandler, SIGNAL(tapped(QEventPoint, Qt::MouseButton))); + const QSignalSpy tappedSpy(tapHandler, SIGNAL(tapped(QEventPoint,Qt::MouseButton))); QVERIFY(tappedSpy.isValid()); // Left click should cause pressed to be emitted.