diff options
| author | Elvis Angelaccio <[email protected]> | 2018-02-04 11:38:50 +0100 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2018-02-04 11:38:50 +0100 |
| commit | ecbab34510f6f925ec4b03e02d24b1ceff4d2744 (patch) | |
| tree | f6fdd4665343fe71924f141e7cf24544008be337 /src/views/tooltips | |
| parent | 219e40cff8e91e6cf23f9aec5d1dc2f9d7e45577 (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/views/tooltips')
| -rw-r--r-- | src/views/tooltips/dolphinfilemetadatawidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/tooltips/dolphinfilemetadatawidget.h b/src/views/tooltips/dolphinfilemetadatawidget.h index 3017ef5ce..e7459b197 100644 --- a/src/views/tooltips/dolphinfilemetadatawidget.h +++ b/src/views/tooltips/dolphinfilemetadatawidget.h @@ -23,7 +23,7 @@ #define DOLPHINFILEMETADATAWIDGET_H #include <QWidget> -#include "config-baloo.h" +#include <config-baloo.h> class KFileItemList; class QLabel; |
