From 4a54da668a8bfcbaceca0a31358ca864f3ade713 Mon Sep 17 00:00:00 2001 From: Samuel Gaist Date: Thu, 3 Sep 2015 18:15:54 +0200 Subject: [PATCH] eps: fix includes related to Qt Caterogized Logging Testing Done: Build on OS X 10.8 Reviewed at https://git.reviewboard.kde.org/r/125025/ --- src/imageformats/eps.cpp | 2 -- src/imageformats/eps_p.h | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/imageformats/eps.cpp b/src/imageformats/eps.cpp index 3267e7a..e566cc4 100644 --- a/src/imageformats/eps.cpp +++ b/src/imageformats/eps.cpp @@ -8,10 +8,8 @@ */ #include "eps_p.h" -#include #include #include -#include #include #include #include diff --git a/src/imageformats/eps_p.h b/src/imageformats/eps_p.h index 55d15a2..527f054 100644 --- a/src/imageformats/eps_p.h +++ b/src/imageformats/eps_p.h @@ -8,6 +8,7 @@ #define KIMG_EPS_H #include +#include class EPSHandler : public QImageIOHandler { @@ -31,5 +32,7 @@ public: QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE; }; +Q_DECLARE_LOGGING_CATEGORY(EPSPLUGIN) + #endif // KIMG_EPS_H