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/dolphinmainwindow.h | |
| 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/dolphinmainwindow.h')
| -rw-r--r-- | src/dolphinmainwindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h index 93ab2762a..f8c0367e8 100644 --- a/src/dolphinmainwindow.h +++ b/src/dolphinmainwindow.h @@ -148,9 +148,9 @@ signals: /** * Is emitted if information of an item is requested to be shown e. g. in the sidebar. - * It the URL is empty, no item information request is pending. + * If item is null, no item information request is pending. */ - void requestItemInfo(const KUrl& url); + void requestItemInfo(const KFileItem& item); protected: /** @see QMainWindow::closeEvent */ @@ -407,7 +407,7 @@ private slots: void slotSelectionChanged(const KFileItemList& selection); /** Emits the signal requestItemInfo(). */ - void slotRequestItemInfo(const KUrl& url); + void slotRequestItemInfo(const KFileItem&); /** * Updates the state of the 'Back' and 'Forward' menu |
