From: David Faure Date: Sun, 12 Jul 2009 01:00:14 +0000 (+0000) Subject: Same change as in r995015, but for usage in konq: Don't connect to KDirLister::itemDe... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/2df2d4ea7ee63a43a327b4ffb1c5cddd176aff91?ds=sidebyside Same change as in r995015, but for usage in konq: Don't connect to KDirLister::itemDeleted(const KFileItem&), but KDirLister::itemsDeleted(const KFileItemList&). svn path=/trunk/KDE/kdebase/apps/; revision=995123 --- diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 8fda67df6..b8a39cffc 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -116,7 +116,7 @@ DolphinPart::DolphinPart(QWidget* parentWidget, QObject* parent, const QVariantL // Watch for changes that should result in updates to the // status bar text. - connect(m_dirLister, SIGNAL(deleteItem(const KFileItem&)), + connect(m_dirLister, SIGNAL(itemsDeleted(const KFileItemList&)), this, SLOT(updateStatusBar())); connect(m_dirLister, SIGNAL(clear()), this, SLOT(updateStatusBar()));