summaryrefslogtreecommitdiffstats
path: root/examples/scxml/sudoku/mainwindow.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-24 15:27:07 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-26 05:10:39 +0200
commitd765f71f3cf59a2eda1dca5215dda62b630cb202 (patch)
tree6dee5fbbd4906d76b71a415c8dcb5b97a481a254 /examples/scxml/sudoku/mainwindow.h
parent96a69e7d368a77f52f647fd71c978f418c6b5bac (diff)
Use QList instead of QVector
Task-number: QTBUG-84469 Change-Id: Ibaf2524e49e75ec660889261347eddbae9ccdbc6 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'examples/scxml/sudoku/mainwindow.h')
-rw-r--r--examples/scxml/sudoku/mainwindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/scxml/sudoku/mainwindow.h b/examples/scxml/sudoku/mainwindow.h
index b37279e..96fec27 100644
--- a/examples/scxml/sudoku/mainwindow.h
+++ b/examples/scxml/sudoku/mainwindow.h
@@ -71,7 +71,7 @@ public:
private:
QScxmlStateMachine *m_machine;
- QVector<QVector<QToolButton *> > m_buttons;
+ QList<QList<QToolButton *>> m_buttons;
QToolButton *m_startButton;
QToolButton *m_undoButton;
QLabel *m_label;