diff options
| author | Peter Penz <[email protected]> | 2007-10-02 19:03:03 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-10-02 19:03:03 +0000 |
| commit | ba150e5735bd336752f713df1e9f66b7ed90e6ae (patch) | |
| tree | ba9a0cd18fd9b78e810af113f21b8061756f23a8 /src/sidebarpage.h | |
| parent | 4a2416e4bd9b646772d0c1da52a7e57a4cf8ec04 (diff) | |
replace QList<KFileItem> by KFileItemList, as KFileItemList is not QList<KFileItem*> anymore since todays update of kfileitem.* in kdelibs
svn path=/trunk/KDE/kdebase/apps/; revision=720234
Diffstat (limited to 'src/sidebarpage.h')
| -rw-r--r-- | src/sidebarpage.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sidebarpage.h b/src/sidebarpage.h index 90f0194d3..697e8de58 100644 --- a/src/sidebarpage.h +++ b/src/sidebarpage.h @@ -39,7 +39,7 @@ public: const KUrl& url() const; /** Returns the current selected items of the active Dolphin view. */ - const QList<KFileItem>& selection() const; + const KFileItemList& selection() const; public slots: /** @@ -52,7 +52,7 @@ public slots: * This is invoked to inform the sidebar that the user has selected a new * set of items. */ - virtual void setSelection(const QList<KFileItem>& selection); + virtual void setSelection(const KFileItemList& selection); signals: /** @@ -70,7 +70,7 @@ signals: * e.g. the current folder. The new selection will be reported via the * setSelection slot. */ - void changeSelection(const QList<KFileItem>& selection); + void changeSelection(const KFileItemList& selection); /** * This signal is emitted whenever a drop action on this widget needs the @@ -80,7 +80,7 @@ signals: private: KUrl m_url; - QList<KFileItem> m_currentSelection; + KFileItemList m_currentSelection; }; #endif // _SIDEBARPAGE_H_ |
