diff options
Diffstat (limited to 'kaddressbook/imagewidget.cpp')
-rw-r--r-- | kaddressbook/imagewidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kaddressbook/imagewidget.cpp b/kaddressbook/imagewidget.cpp index dd844499c..bb2064883 100644 --- a/kaddressbook/imagewidget.cpp +++ b/kaddressbook/imagewidget.cpp @@ -144,7 +144,7 @@ void ImageButton::startDrag() void ImageButton::updateGUI() { if ( mPicture.data().isNull() ) - setPixmap( KGlobal::iconLoader()->iconPath( "personal", KIcon::Desktop ) ); + setPixmap( TDEGlobal::iconLoader()->iconPath( "personal", KIcon::Desktop ) ); else setPixmap( mPicture.data() ); } @@ -208,7 +208,7 @@ void ImageButton::mouseMoveEvent( TQMouseEvent *event ) { if ( (event->state() & Qt::LeftButton) && (event->pos() - mDragStartPos).manhattanLength() > - KGlobalSettings::dndEventDelay() ) { + TDEGlobalSettings::dndEventDelay() ) { startDrag(); } } |