┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorRoman Inflianskas <[email protected]>2018-03-04 16:38:16 +0300
committerRoman Inflianskas <[email protected]>2018-03-04 21:00:47 +0300
commit48b58f830a585b773435c9af5ee2fe8f0c7c641d (patch)
tree192ff9a5b824a5d1ac4cab34a5600abd87f7f486 /src/main.cpp
parent533f050855a50212bba7be57a1590f9ce743e26d (diff)
Remove unused #include
Summary: I used CLion inspection to hunt all unused #include Reviewers: #dolphin, elvisangelaccio, markg Reviewed By: #dolphin, elvisangelaccio, markg Subscribers: bcooksley, markg, elvisangelaccio, #dolphin Differential Revision: https://phabricator.kde.org/D10985
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp
index e05c67d96..db52e11be 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -19,21 +19,22 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
+#include "dbusinterface.h"
+#include "dolphin_generalsettings.h"
#include "dolphin_version.h"
+#include "dolphindebug.h"
#include "dolphinmainwindow.h"
-#include "dolphin_generalsettings.h"
-#include "dbusinterface.h"
#include "global.h"
-#include "dolphindebug.h"
-#include <KDBusService>
#include <KAboutData>
#include <KCrash>
-#include <QCommandLineParser>
-#include <QApplication>
+#include <KDBusService>
#include <KLocalizedString>
#include <Kdelibs4ConfigMigrator>
+#include <QApplication>
+#include <QCommandLineParser>
+
#ifndef Q_OS_WIN
#include <unistd.h>
#endif