SVN commit 1085468 by sedwards: Incorporate the changes introduced in revision 1084111 to kdelibs/plasma/animations/animation.h. This fixes PyKDE4 for 4.4.0.
(Thanks to AiX 27/249 for the patch.) CCMAIL: [email protected] CCMAIL: [email protected] CCMAIL: [email protected] M +5 -6 animation.sip --- branches/KDE/4.4/kdebindings/python/pykde4/sip/plasma/animation.sip #1085467:1085468 @@ -27,7 +27,7 @@ public: int duration () const; - enum Reference + enum ReferenceFlag { Center, Up, @@ -35,6 +35,7 @@ Left, Right }; + explicit Animation (QObject* parent /TransferThis/ = 0); virtual ~Animation ()=0; protected: @@ -50,17 +51,15 @@ public: void setTargetWidget (QGraphicsWidget* widget); QGraphicsWidget* targetWidget () const; - enum MovementDirection + enum MovementDirectionFlag { + MoveAny, MoveUp, - MoveUpRight, MoveRight, - MoveDownRight, MoveDown, - MoveDownLeft, MoveLeft, - MoveUpLeft }; + void setEasingCurve (const QEasingCurve& curve); QEasingCurve easingCurve () const; }; _______________________________________________ release-team mailing list [email protected] https://mail.kde.org/mailman/listinfo/release-team
