From d89f43f66bb323a612c2f7de09d5969e437845e0 Mon Sep 17 00:00:00 2001 From: David Faure Date: Mon, 2 Jul 2007 17:24:54 +0000 Subject: Change signature of requestItemInfo signal, to avoid fileitem -> url -> index -> fileitem roundtrip in dolphin, and to match the BrowserExtension mouseOverInfo() signal. Started to implement more of the part (e.g. spinning wheel in konq). svn path=/trunk/KDE/kdebase/apps/; revision=682440 --- src/dolphinview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dolphinview.cpp') diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 5a1de5217..042c74b2c 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -803,13 +803,13 @@ void DolphinView::showHoverInformation(const QModelIndex& index) const KFileItem* item = fileItem(index); if (item != 0) { - emit requestItemInfo(item->url()); + emit requestItemInfo(*item); } } void DolphinView::clearHoverInformation() { - emit requestItemInfo(KUrl()); + emit requestItemInfo(KFileItem()); } -- cgit v1.3