summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Mutz <[email protected]>2025-06-03 23:19:27 +0200
committerMarc Mutz <[email protected]>2025-06-04 07:52:15 +0200
commit84dfac09c606a89e882cdcbe4a4fa79398d55f59 (patch)
tree6bce5364d3654515e342263e07489606b366d260
parentef92141e526b20d2e6e2a0d5446880ef2f55ffce (diff)
Normalize signal/slot signatures 2025HEADdev
This is the result of running util/normalize on the code base. The following manual edits were needed: (none) Pick-to: 6.10 6.9 6.8 6.5 Change-Id: I1faaade7c727ac8fe562621f14c1c105020a3840 Reviewed-by: Ulf Hermann <[email protected]>
-rw-r--r--tests/auto/statemachine/tst_statemachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/statemachine/tst_statemachine.cpp b/tests/auto/statemachine/tst_statemachine.cpp
index 1aa74f7..0ce4b65 100644
--- a/tests/auto/statemachine/tst_statemachine.cpp
+++ b/tests/auto/statemachine/tst_statemachine.cpp
@@ -539,7 +539,7 @@ void tst_StateMachine::bindings()
// -- QScxmlStateMachine::invokedServices
// Test executes statemachine and observes as the invoked services change
TopMachine topSm;
- QSignalSpy invokedSpy(&topSm, SIGNAL(invokedServicesChanged(const QList<QScxmlInvokableService *>)));
+ QSignalSpy invokedSpy(&topSm, SIGNAL(invokedServicesChanged(QList<QScxmlInvokableService*>)));
QCOMPARE(topSm.invokedServices().size(), 0);
// at some point during the topSm execution there are 3 invoked services
topSm.start();