Changeset 769 for trunk/src/corelib/animation/qanimationgroup_p.h
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/corelib/animation/qanimationgroup_p.h
r651 r769 73 73 } 74 74 75 virtual void animationInsertedAt(int index) { Q_UNUSED(index) }; 76 virtual void animationRemovedAt(int index); 75 virtual void animationInsertedAt(int) { } 76 virtual void animationRemoved(int, QAbstractAnimation *); 77 78 void disconnectUncontrolledAnimation(QAbstractAnimation *anim) 79 { 80 //0 for the signal here because we might be called from the animation destructor 81 QObject::disconnect(anim, 0, q_func(), SLOT(_q_uncontrolledAnimationFinished())); 82 } 83 84 void connectUncontrolledAnimation(QAbstractAnimation *anim) 85 { 86 QObject::connect(anim, SIGNAL(finished()), q_func(), SLOT(_q_uncontrolledAnimationFinished())); 87 } 77 88 78 89 QList<QAbstractAnimation *> animations;
Note:
See TracChangeset
for help on using the changeset viewer.