summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/qwidgetanimator_p.h
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-07-08 13:12:08 (GMT)
committerThierry Bastian <thierry.bastian@nokia.com>2009-07-08 13:12:08 (GMT)
commit19a824cfe36458732f12e6374848df37cd92eed8 (patch)
tree78f4bd9aa3327e655ea09a9da906e03e146d1f22 /src/gui/widgets/qwidgetanimator_p.h
parent12dc33d0e7191dbabb03db989b0f56372de731e3 (diff)
downloadQt-19a824cfe36458732f12e6374848df37cd92eed8.zip
Qt-19a824cfe36458732f12e6374848df37cd92eed8.tar.gz
Qt-19a824cfe36458732f12e6374848df37cd92eed8.tar.bz2
Animations: fix compilation with QT_NO_ANIMATION
Diffstat (limited to 'src/gui/widgets/qwidgetanimator_p.h')
-rw-r--r--src/gui/widgets/qwidgetanimator_p.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/widgets/qwidgetanimator_p.h b/src/gui/widgets/qwidgetanimator_p.h
index edd8e7c..4047395 100644
--- a/src/gui/widgets/qwidgetanimator_p.h
+++ b/src/gui/widgets/qwidgetanimator_p.h
@@ -74,12 +74,15 @@ public:
void abort(QWidget *widget);
+#ifndef QT_NO_ANIMATION
private Q_SLOTS:
void animationFinished();
private:
typedef QMap<QWidget*, QPropertyAnimation*> AnimationMap;
AnimationMap m_animation_map;
+#endif
+private:
QMainWindowLayout *m_mainWindowLayout;
};