diff options
| author | Peter Penz <[email protected]> | 2007-05-18 13:06:41 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-05-18 13:06:41 +0000 |
| commit | ec4c6d07add47d5295a6f18d681ac879017d0f77 (patch) | |
| tree | 61054a940f939735e8efdc6795c918bdbc8c82b3 /src | |
| parent | 5e7bae10b073c4975cdf01ed348c7f69af327b31 (diff) | |
- 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinview.cpp | 6 | ||||
| -rw-r--r-- | src/dolphinview.h | 8 |
2 files changed, 1 insertions, 13 deletions
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; |
