From a7407edaf81c685d4a389785a405a53a5de4b148 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Tue, 12 May 2020 00:58:40 +0800 Subject: Format EVERYTHING. Hopefully this will make the source code less horrendous and actually readable. The command used was: ``` astyle --suffix=none --style=allman --attach-extern-c --attach-closing-while --indent-switches --indent-after-parens --pad-oper --pad-header --unpad-paren --align-pointer=name --recursive './*.cpp,*.hpp' ``` --- qmidiplayer-lite/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'qmidiplayer-lite/main.cpp') diff --git a/qmidiplayer-lite/main.cpp b/qmidiplayer-lite/main.cpp index 1a87b33..f0f9af6 100644 --- a/qmidiplayer-lite/main.cpp +++ b/qmidiplayer-lite/main.cpp @@ -5,11 +5,11 @@ int main(int argc, char *argv[]) { - QApplication app(argc, argv); - qmlRegisterType("org.chrisoft.qmpcore",1,0,"CQMPCoreWrapper"); + QApplication app(argc, argv); + qmlRegisterType("org.chrisoft.qmpcore", 1, 0, "CQMPCoreWrapper"); - QQmlApplicationEngine engine; - engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); + QQmlApplicationEngine engine; + engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); - return app.exec(); + return app.exec(); } -- cgit v1.2.3