]> cloud.milkyroute.net Git - dolphin.git/commitdiff
- assure that when hovering the viewport that an empty request for item information...
authorPeter Penz <peter.penz19@gmail.com>
Fri, 18 May 2007 13:06:41 +0000 (13:06 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Fri, 18 May 2007 13:06:41 +0000 (13:06 +0000)
- remove unused method

svn path=/trunk/KDE/kdebase/apps/; revision=665973

src/dolphinview.cpp
src/dolphinview.h

index 021a6641ecfdcd001c44826fe50e4ec8a3a9b1d9..9320cd4cfc1a8752048a19a9245c45a62c8acfad 100644 (file)
@@ -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());
 }
 
 
index 0ac116fabc8bb0eec515393c4e914d3f0fe42b8c..e58ed31c8f911f4a9ebe322bd56795338ed8c730 100644 (file)
@@ -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;