summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTasuku Suzuki <tasuku.suzuki@nokia.com>2010-03-18 13:24:13 (GMT)
committerThierry Bastian <thierry.bastian@nokia.com>2010-04-08 09:08:33 (GMT)
commit75b338aaa8e3c5138718019e95271d8eed5f0c39 (patch)
tree4b2323fda35731b1f95743c1299ad5b6bfbe1ac9
parente1e728daad07600fca7bc1811c92fb05065884c6 (diff)
downloadQt-75b338aaa8e3c5138718019e95271d8eed5f0c39.zip
Qt-75b338aaa8e3c5138718019e95271d8eed5f0c39.tar.gz
Qt-75b338aaa8e3c5138718019e95271d8eed5f0c39.tar.bz2
Fix compile error with QT_NO_ANIMATION
Task-number: QTBUG-7414 Author: Tasuku Suzuki <tasuku.suzuki@nokia.com>
-rw-r--r--src/gui/animation/qguivariantanimation.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/animation/qguivariantanimation.cpp b/src/gui/animation/qguivariantanimation.cpp
index 52303f5..28cde3e 100644
--- a/src/gui/animation/qguivariantanimation.cpp
+++ b/src/gui/animation/qguivariantanimation.cpp
@@ -38,12 +38,11 @@
** $QT_END_LICENSE$
**
****************************************************************************/
-
-#ifndef QT_NO_ANIMATION
-
#include <QtCore/qvariantanimation.h>
#include <private/qvariantanimation_p.h>
+#ifndef QT_NO_ANIMATION
+
#include <QtGui/qcolor.h>
#include <QtGui/qvector2d.h>
#include <QtGui/qvector3d.h>