From 22ecba3b7dfb8485c65a8272859e2fb01a07780f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 25 Apr 2013 16:54:12 +0200 Subject: [PATCH] Cleanup of includes in utils.h * removed unneeded includes * reordered * camel case REVIEW: 110188 --- tabbox/tabbox.h | 1 + utils.cpp | 1 + utils.h | 34 ++++++++++++++++------------------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/tabbox/tabbox.h b/tabbox/tabbox.h index 2162dceb39..600b37a955 100644 --- a/tabbox/tabbox.h +++ b/tabbox/tabbox.h @@ -29,6 +29,7 @@ along with this program. If not, see . #include "utils.h" #include "tabbox/tabboxhandler.h" +class KActionCollection; class QKeyEvent; namespace KWin diff --git a/utils.cpp b/utils.cpp index b3c092d7a2..16c7619606 100644 --- a/utils.cpp +++ b/utils.cpp @@ -30,6 +30,7 @@ along with this program. If not, see . #include #include #include +#include #ifndef KCMRULES #include diff --git a/utils.h b/utils.h index 80e2041049..5fa103b166 100644 --- a/utils.h +++ b/utils.h @@ -22,29 +22,27 @@ along with this program. If not, see . #ifndef KWIN_UTILS_H #define KWIN_UTILS_H -class QLabel; - +// cmake stuff #include #include - #include - -#include - -#include - -#include -#include -#include -#include -#include -#include -#include - +// kwin #include +// KDE +#include +#include +#include +// Qt +#include +// X +#include +#include +// system +#include -// needed by the DBUS interface -Q_DECLARE_METATYPE(QList) +// forward declarations +class KKeySequenceWidget; +class QLabel; namespace KWin {