diff options
Diffstat (limited to 'src/kerrylabel.cpp')
-rw-r--r-- | src/kerrylabel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kerrylabel.cpp b/src/kerrylabel.cpp index 9c85025..f758ffc 100644 --- a/src/kerrylabel.cpp +++ b/src/kerrylabel.cpp @@ -22,7 +22,7 @@ #include "hitwidget.h" #include <ntqdragobject.h> -#include <kglobalsettings.h> +#include <tdeglobalsettings.h> #include <kurl.h> #include <krun.h> /* @@ -59,7 +59,7 @@ void KerryLabel::mousePressEvent(TQMouseEvent* ev) void KerryLabel::mouseMoveEvent(TQMouseEvent* ev) { if (dragInfo.state == diPending) { - int distance = KGlobalSettings::dndEventDelay(); + int distance = TDEGlobalSettings::dndEventDelay(); if ( ev->x() > dragInfo.start.x() + distance || ev->x() < dragInfo.start.x() - distance || ev->y() > dragInfo.start.y() + distance || ev->y() < dragInfo.start.y() - distance) { doDrag(); @@ -94,7 +94,7 @@ void KerryLabel::doDrag() // _items.append( &item ); // // const KURL kurl(url()); -// KActionCollection act(this); +// TDEActionCollection act(this); // // KonqPopupMenu * popupMenu = new KonqPopupMenu( KonqBookmarkManager::self(), _items, // kurl, act, (KNewMenu*)NULL, this, |