summaryrefslogtreecommitdiffstats
path: root/src/corelib/statemachine/qstate_p.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-07-06 12:12:48 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-07-06 14:06:13 +0200
commit60c6f4a51ae6d3de7f9b765f89be41e193f5c19a (patch)
tree390488c424b65caa14295bb43359b2b4c1293433 /src/corelib/statemachine/qstate_p.h
parentc163ec1dbf873781b77ea67d4449d643c166c0c4 (diff)
Use QList instead of QVector in statemachine
Task-number: QTBUG-84469 Change-Id: I2b1399c34ebcc2237ca2662d97b54e81f11cb7af Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/corelib/statemachine/qstate_p.h')
-rw-r--r--src/corelib/statemachine/qstate_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/statemachine/qstate_p.h b/src/corelib/statemachine/qstate_p.h
index ec746caae1..25393a04b4 100644
--- a/src/corelib/statemachine/qstate_p.h
+++ b/src/corelib/statemachine/qstate_p.h
@@ -118,7 +118,7 @@ public:
mutable QList<QAbstractTransition*> transitionsList;
#ifndef QT_NO_PROPERTIES
- QVector<QPropertyAssignment> propertyAssignments;
+ QList<QPropertyAssignment> propertyAssignments;
#endif
};