Coding style: changing variable name.
svn path=/trunk/KDE/kdelibs/; revision=1036718
This commit is contained in:
parent
c07d566656
commit
1a6384bb3f
@ -28,7 +28,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Object the animation(s) should act upon.
|
* Object the animation(s) should act upon.
|
||||||
*/
|
*/
|
||||||
QGraphicsWidget* m_object;
|
QGraphicsWidget* animObject;
|
||||||
};
|
};
|
||||||
|
|
||||||
AbstractAnimation::AbstractAnimation(): d(new AnimationPrivate)
|
AbstractAnimation::AbstractAnimation(): d(new AnimationPrivate)
|
||||||
@ -43,12 +43,12 @@ AbstractAnimation::~AbstractAnimation()
|
|||||||
|
|
||||||
void AbstractAnimation::setWidget(QGraphicsWidget* receiver)
|
void AbstractAnimation::setWidget(QGraphicsWidget* receiver)
|
||||||
{
|
{
|
||||||
d->m_object = receiver;
|
d->animObject = receiver;
|
||||||
}
|
}
|
||||||
|
|
||||||
QGraphicsWidget* AbstractAnimation::getAnimatedObject()
|
QGraphicsWidget* AbstractAnimation::getAnimatedObject()
|
||||||
{
|
{
|
||||||
return d->m_object;
|
return d->animObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
} //namespace Plasma
|
} //namespace Plasma
|
||||||
|
Loading…
Reference in New Issue
Block a user