From 3f75f3f9aa55a871abd06805d9b18978ec2bf474 Mon Sep 17 00:00:00 2001 From: Thomas McGuire Date: Sat, 3 Nov 2007 21:35:41 +0000 Subject: [PATCH] Use the new icon for multiple drag items the Oxygen team has just commited. svn path=/trunk/KDE/kdepim/; revision=732447 --- kmheaders.cpp | 2 +- searchwindow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kmheaders.cpp b/kmheaders.cpp index dabf5dd35..669c29acc 100644 --- a/kmheaders.cpp +++ b/kmheaders.cpp @@ -2384,7 +2384,7 @@ void KMHeaders::contentsMouseMoveEvent( QMouseEvent* e ) if( count == 1 ) pixmap = QPixmap( DesktopIcon("message", KIconLoader::SizeSmall) ); else - pixmap = QPixmap( DesktopIcon("kmultiple", KIconLoader::SizeSmall) ); + pixmap = QPixmap( DesktopIcon("item-drag-multiple", KIconLoader::SizeSmall) ); // Calculate hotspot (as in Konqueror) if( !pixmap.isNull() ) { diff --git a/searchwindow.cpp b/searchwindow.cpp index d0db491ba..572477ea0 100644 --- a/searchwindow.cpp +++ b/searchwindow.cpp @@ -103,7 +103,7 @@ void MatchListView::startDrag ( Qt::DropActions supportedActions ) if( mailList.count() == 1 ) pixmap = QPixmap( DesktopIcon("message", KIconLoader::SizeSmall) ); else - pixmap = QPixmap( DesktopIcon("kmultiple", KIconLoader::SizeSmall) ); + pixmap = QPixmap( DesktopIcon("item-drag-multiple", KIconLoader::SizeSmall) ); drag->setPixmap( pixmap ); drag->exec( supportedActions );