diff --git a/applet.cpp b/applet.cpp index f3a88eef7..e99a12f41 100644 --- a/applet.cpp +++ b/applet.cpp @@ -781,7 +781,7 @@ void Applet::registerAsDragHandle( QGraphicsItem * item ) } } -void Applet::unregisterDragHandle( QGraphicsItem * item ) +void Applet::unregisterAsDragHandle(QGraphicsItem *item) { if (!item) { return; diff --git a/applet.h b/applet.h index eac1d5c04..6cd99231c 100644 --- a/applet.h +++ b/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