symmetry
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=803323
This commit is contained in:
parent
9c588df3bb
commit
a329771ad5
@ -781,7 +781,7 @@ void Applet::registerAsDragHandle( QGraphicsItem * item )
|
||||
}
|
||||
}
|
||||
|
||||
void Applet::unregisterDragHandle( QGraphicsItem * item )
|
||||
void Applet::unregisterAsDragHandle(QGraphicsItem *item)
|
||||
{
|
||||
if (!item) {
|
||||
return;
|
||||
|
6
applet.h
6
applet.h
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user