diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-07-25 12:39:04 -0700 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-07-26 16:32:51 +0300 |
commit | afe7e847d6ab550237c066a1570a7c3160b5b008 (patch) | |
tree | 04344853d787864ef726b9ae94f2e15d07c0d76e /tests/testqml.cpp | |
parent | 128fc5f4b81f036eeb76cda99704095673efbe8e (diff) | |
download | subsurface-afe7e847d6ab550237c066a1570a7c3160b5b008.tar.gz |
Whitespace cleanup tests
Again, entirely script based.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'tests/testqml.cpp')
-rw-r--r-- | tests/testqml.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/testqml.cpp b/tests/testqml.cpp index 0b75d8d48..d0c98b709 100644 --- a/tests/testqml.cpp +++ b/tests/testqml.cpp @@ -1,13 +1,12 @@ // SPDX-License-Identifier: GPL-2.0 +#include <QApplication> +#include <QQmlContext> #include <QQmlEngine> #include <QtQuickTest> #include <QtTest> -#include <QQmlEngine> -#include <QQmlContext> -#include <QApplication> -#include "core/settings/qPref.h" #include "core/qt-gui.h" +#include "core/settings/qPref.h" // this is the content of QUICK_TEST_MAIN amended with // registration of ssrf classes @@ -34,7 +33,7 @@ int main(int argc, char **argv) // save tst_dir and pass rest to Qt const char *tst_dir = argv[1]; for (int i = 1; i < argc; i++) - argv[i] = argv[i+1]; + argv[i] = argv[i + 1]; argc--; // Register types |