diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-06-04 12:32:33 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-06-04 12:33:54 (GMT) |
commit | e2382d731249dc57e7c538ec60b3f1f714741cfd (patch) | |
tree | 1e27f52d8553375f4e783b554fe1b1a27e43d1c6 /src/corelib/animation/qanimationgroup.cpp | |
parent | 7e6b33b29057556903c37aadd0f48650641591fa (diff) | |
download | Qt-e2382d731249dc57e7c538ec60b3f1f714741cfd.zip Qt-e2382d731249dc57e7c538ec60b3f1f714741cfd.tar.gz Qt-e2382d731249dc57e7c538ec60b3f1f714741cfd.tar.bz2 |
move the QT_NO_ANIMATION macro to the right place (ie after other
includes)
Diffstat (limited to 'src/corelib/animation/qanimationgroup.cpp')
-rw-r--r-- | src/corelib/animation/qanimationgroup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/animation/qanimationgroup.cpp b/src/corelib/animation/qanimationgroup.cpp index 839b522..e192a6c 100644 --- a/src/corelib/animation/qanimationgroup.cpp +++ b/src/corelib/animation/qanimationgroup.cpp @@ -89,13 +89,13 @@ \sa QAbstractAnimation, QVariantAnimation, {The Animation Framework} */ -#ifndef QT_NO_ANIMATION - #include "qanimationgroup.h" #include <QtCore/qdebug.h> #include <QtCore/qcoreevent.h> #include "qanimationgroup_p.h" +#ifndef QT_NO_ANIMATION + QT_BEGIN_NAMESPACE |