From 93564b700497f8c2558663e23a416f3c34f9f58b Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Sun, 2 Sep 2012 21:33:17 -0400 Subject: [PATCH] kwin: Fix build failure regarding QElapsedTimer. It seems not all Qt installs will automatically #include QElapsedTimer from QtCore/QTimer, this caused a build failure on my system and on a RHEL 6.2 VM I've been testing on. Checking the Qt docs, QBasicTimer also has a separate include so although this didn't cause a build failure, I've thrown in its separate #include as well. I have not checked for other #include errors, and a very quick search on b.k.o for bugs mentioning "build" did not return any bugs to close. I'm pretty sure this build failure applies only to master but I haven't checked thoroughly. --- composite.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/composite.h b/composite.h index a4a37107ff..93e8f857ba 100644 --- a/composite.h +++ b/composite.h @@ -24,6 +24,8 @@ along with this program. If not, see . #include #include +#include +#include #include class KSelectionOwner;