From 011fd24f57bc4f3b0b11ffb216c0f783c66e3852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Sun, 8 Dec 2013 17:02:05 +0100 Subject: [PATCH] Minor cleanup, add my copyright --- src/shell/main.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/shell/main.cpp b/src/shell/main.cpp index c6aebeec8..8694b71b1 100644 --- a/src/shell/main.cpp +++ b/src/shell/main.cpp @@ -1,5 +1,6 @@ /* * Copyright 2012 Marco Martin + * Copyright 2013 Sebastian Kügler * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,21 +19,20 @@ #include #include - -#include -#include "shellpluginloader.h" -#include "shellmanager.h" - #include #include +#include + +#include "shellpluginloader.h" +#include "shellmanager.h" + static const char description[] = "Plasma Shell"; static const char version[] = "2.0"; static QCommandLineParser parser; int main(int argc, char** argv) { - QApplication app(argc, argv); app.setApplicationVersion(version); parser.setApplicationDescription(description); @@ -42,8 +42,8 @@ int main(int argc, char** argv) QStringLiteral("Enable QML Javascript debugger")); QCommandLineOption win(QStringList() << QStringLiteral("w") << - QStringLiteral("windowed"), - QStringLiteral("Force a windowed view for testing purposes")); + QStringLiteral("windowed"), + QStringLiteral("Force a windowed view for testing purposes")); QCommandLineOption crash(QStringList() << QStringLiteral("n") << QStringLiteral("crashes"),