diff options
| author | David Faure <[email protected]> | 2007-07-02 17:24:54 +0000 |
|---|---|---|
| committer | David Faure <[email protected]> | 2007-07-02 17:24:54 +0000 |
| commit | d89f43f66bb323a612c2f7de09d5969e437845e0 (patch) | |
| tree | 8ca781b6252342fc0404fed835d6021122276171 /src/dolphinview.cpp | |
| parent | 398005a9913a3773ba6e3539c4bf2728628623a4 (diff) | |
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
Diffstat (limited to 'src/dolphinview.cpp')
| -rw-r--r-- | src/dolphinview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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()); } |
