Remove use of k_funcinfo
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=702583
This commit is contained in:
parent
d26d44d606
commit
eca6dc90c0
@ -120,7 +120,7 @@ void Animator::slideOut(qreal progress, QGraphicsItem *item, const QPoint &desti
|
||||
{
|
||||
//FIXME: rewrite
|
||||
Q_UNUSED(progress);
|
||||
//kDebug()<<k_funcinfo;
|
||||
//kDebug();
|
||||
item->translate(destination.x(), destination.y());
|
||||
}
|
||||
|
||||
|
@ -182,7 +182,7 @@ void Phase::appletDestroyed(QObject* o)
|
||||
|
||||
void Phase::animateItem(QGraphicsItem* item, Animation animation)
|
||||
{
|
||||
//kDebug()<<k_funcinfo;
|
||||
//kDebug();
|
||||
// get rid of any existing animations on this item.
|
||||
//TODO: shoudl we allow multiple anims per item?
|
||||
QMap<QGraphicsItem*, AnimationState*>::iterator it = d->animatedItems.find(item);
|
||||
@ -221,7 +221,7 @@ void Phase::animateItem(QGraphicsItem* item, Animation animation)
|
||||
|
||||
void Phase::moveItem(QGraphicsItem* item, Movement movement, const QPoint &destination)
|
||||
{
|
||||
//kDebug()<<k_funcinfo;
|
||||
//kDebug();
|
||||
QMap<QGraphicsItem*, MovementState*>::iterator it = d->movingItems.find(item);
|
||||
if (it != d->movingItems.end()) {
|
||||
delete it.value();
|
||||
|
@ -84,7 +84,7 @@ qreal LayoutItem::widthForHeight(qreal h) const
|
||||
void LayoutItem::setLayout(Layout* layout)
|
||||
{
|
||||
if (d->layout && layout) {
|
||||
kDebug() << k_funcinfo << " already have a layout.";
|
||||
kDebug() << " already have a layout.";
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user