From: Peter Penz Date: Fri, 18 May 2007 13:06:41 +0000 (+0000) Subject: - assure that when hovering the viewport that an empty request for item information... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/ec4c6d07add47d5295a6f18d681ac879017d0f77 - assure that when hovering the viewport that an empty request for item information is send - remove unused method svn path=/trunk/KDE/kdebase/apps/; revision=665973 --- diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 021a6641e..9320cd4cf 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -409,11 +409,6 @@ int DolphinView::contentsY() const return itemView()->verticalScrollBar()->value(); } -void DolphinView::emitRequestItemInfo(const KUrl& url) -{ - emit requestItemInfo(url); -} - bool DolphinView::isFilterBarVisible() const { return m_filterBar->isVisible(); @@ -1222,6 +1217,7 @@ void DolphinView::showHoverInformation(const QModelIndex& index) void DolphinView::clearHoverInformation() { m_statusBar->clear(); + emit requestItemInfo(KUrl()); } diff --git a/src/dolphinview.h b/src/dolphinview.h index 0ac116fab..e58ed31c8 100644 --- a/src/dolphinview.h +++ b/src/dolphinview.h @@ -346,14 +346,6 @@ public: return m_urlNavigator; } - /** - * Triggers to request user information for the item given - * by the URL \a url. The signal requestItemInfo is emitted, - * which provides a way for widgets to get an indication to update - * the item information. - */ - void emitRequestItemInfo(const KUrl& url); - /** Returns true, if the filter bar is visible. */ bool isFilterBarVisible() const;