SVN_SILENT: cosmetics

svn path=/trunk/KDE/kdelibs/; revision=1038237
This commit is contained in:
Aaron J. Seigo 2009-10-20 21:24:06 +00:00
parent 353c7d9aca
commit db5fd60cc8

View File

@ -63,13 +63,18 @@ public:
QAbstractAnimation* toQAbstractAnimation(QObject* parent = 0);
protected:
/**
* Change the animation duration. Default is 1000ms.
* @arg duration The new duration of the animation.
*/
virtual void setDuration(int duration = 250);
/**
* Get the animation duration.
* @return duration in ms.
*/
int duration() const;
/**
* Each individual class must override this function to place their main
* functionality. This function must take the values from the constructor,
@ -78,14 +83,7 @@ protected:
*/
virtual QAbstractAnimation* render(QObject* parent = 0) = 0;
/**
* Get the animation duration.
* @return duration in ms.
*/
int duration() const;
private:
AnimationPrivate * const d;
};