┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels
diff options
context:
space:
mode:
authorElvis Angelaccio <[email protected]>2018-02-04 11:38:50 +0100
committerElvis Angelaccio <[email protected]>2018-02-04 11:38:50 +0100
commitecbab34510f6f925ec4b03e02d24b1ceff4d2744 (patch)
treef6fdd4665343fe71924f141e7cf24544008be337 /src/panels
parent219e40cff8e91e6cf23f9aec5d1dc2f9d7e45577 (diff)
Fix all krazy #include warnings
- "include own header first line" - "put config.h in angle brackets line" - "do not include QtModule/QtClass line" `QElapsedTimer` was implicitly included by kfileitemmodelsortalgorithm.h, now we need to explicitly include it in kfileitemmodel.cpp. We also need to explicitly link to `Qt5::Concurrent`, otherwise we cannot `#include <QtConcurrentRun>`.
Diffstat (limited to 'src/panels')
-rw-r--r--src/panels/information/filemetadataconfigurationdialog.h2
-rw-r--r--src/panels/information/informationpanelcontent.h5
2 files changed, 4 insertions, 3 deletions
diff --git a/src/panels/information/filemetadataconfigurationdialog.h b/src/panels/information/filemetadataconfigurationdialog.h
index 8ca9ef6fe..912fadadc 100644
--- a/src/panels/information/filemetadataconfigurationdialog.h
+++ b/src/panels/information/filemetadataconfigurationdialog.h
@@ -22,7 +22,7 @@
#include <QDialog>
#include <KFileItem>
-#include "config-baloo.h"
+#include <config-baloo.h>
#ifndef HAVE_BALOO
class KFileMetaDataConfigurationWidget;
diff --git a/src/panels/information/informationpanelcontent.h b/src/panels/information/informationpanelcontent.h
index 8b143af1d..a6c2b5622 100644
--- a/src/panels/information/informationpanelcontent.h
+++ b/src/panels/information/informationpanelcontent.h
@@ -20,10 +20,11 @@
#ifndef INFORMATIONPANELCONTENT_H
#define INFORMATIONPANELCONTENT_H
-#include "config-baloo.h"
+#include <config-baloo.h>
+
#include <KFileItem>
-#include <QUrl>
+#include <QUrl>
#include <QPointer>
#include <QWidget>