svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=803323
This commit is contained in:
Aaron J. Seigo 2008-05-02 15:12:52 +00:00
parent 9c588df3bb
commit a329771ad5
2 changed files with 4 additions and 4 deletions

View File

@ -781,7 +781,7 @@ void Applet::registerAsDragHandle( QGraphicsItem * item )
}
}
void Applet::unregisterDragHandle( QGraphicsItem * item )
void Applet::unregisterAsDragHandle(QGraphicsItem *item)
{
if (!item) {
return;

View File

@ -611,20 +611,20 @@ class PLASMA_EXPORT Applet : public QGraphicsWidget
*
* @param item the item to watch for mouse move
*/
void registerAsDragHandle( QGraphicsItem * item );
void registerAsDragHandle(QGraphicsItem *item);
/**
* Unregister a widget registered with registerAsDragHandle.
*
* @param item the item to unregister
*/
void unregisterDragHandle( QGraphicsItem * item );
void unregisterAsDragHandle(QGraphicsItem *item);
/**
* @param item the item to look for if it is registered or not
* @return true if it is registered, false otherwise
*/
bool isRegisteredAsDragHandle( QGraphicsItem * item );
bool isRegisteredAsDragHandle(QGraphicsItem *item);
/**
* @internal event filter; used for focus watching