summaryrefslogtreecommitdiffstats
path: root/examples/scxml/sudoku/mainwindow.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2018-04-30 15:55:59 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2018-05-02 08:27:37 +0000
commit51cc3eaf773c9d9b80d182a183d21f1ffbf88855 (patch)
tree65dfc6351f7c3e1e2a4c4bf00b17575f1ca01d8d /examples/scxml/sudoku/mainwindow.cpp
parentfc31cd63916ca9b16c1b40366de2682dd9f1a4b3 (diff)
Use canonical include style and sort #include
See also https://wiki.qt.io/Writing_Qt_Examples Task-number: QTBUG-60649 Change-Id: I3a5671f39e870f96546e66427cc9434f41777e33 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'examples/scxml/sudoku/mainwindow.cpp')
-rw-r--r--examples/scxml/sudoku/mainwindow.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/scxml/sudoku/mainwindow.cpp b/examples/scxml/sudoku/mainwindow.cpp
index 7f7d99e..d54fc26 100644
--- a/examples/scxml/sudoku/mainwindow.cpp
+++ b/examples/scxml/sudoku/mainwindow.cpp
@@ -50,15 +50,15 @@
#include "mainwindow.h"
-#include <QStringListModel>
-#include <QScxmlStateMachine>
#include <QComboBox>
-#include <QToolButton>
-#include <QLabel>
-#include <QGridLayout>
-#include <QFile>
#include <QDir>
+#include <QFile>
+#include <QGridLayout>
+#include <QLabel>
+#include <QScxmlStateMachine>
+#include <QStringListModel>
#include <QTextStream>
+#include <QToolButton>
static int Size = 9;