homescreenapp/hsutils/src/hspropertyanimationwrapper.cpp
changeset 71 1db7cc813a4e
parent 69 87476091b3f5
--- a/homescreenapp/hsutils/src/hspropertyanimationwrapper.cpp	Fri Jul 23 13:47:57 2010 +0300
+++ b/homescreenapp/hsutils/src/hspropertyanimationwrapper.cpp	Fri Aug 06 13:36:36 2010 +0300
@@ -16,6 +16,7 @@
 */
 
 #include <QPropertyAnimation>
+#include <QEasingCurve>
 #include "hspropertyanimationwrapper.h"
 
 /*!
@@ -107,3 +108,11 @@
     mImpl->mPropertyAnimation->stop();
 }
 
+/*!
+
+*/
+void HsPropertyAnimationWrapper::setEasingCurve(const QEasingCurve &curve)
+{
+    mImpl->mPropertyAnimation->setEasingCurve(curve);
+}
+