X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/bafaf9496cc439c461e249057e5d913e9aa734fc..ec00f379dc42b00a64ab1af25bb4bb1a06bd7449:/src/sidebarpage.h diff --git a/src/sidebarpage.h b/src/sidebarpage.h index cf9704bca..90f0194d3 100644 --- a/src/sidebarpage.h +++ b/src/sidebarpage.h @@ -21,7 +21,7 @@ #ifndef _SIDEBARPAGE_H_ #define _SIDEBARPAGE_H_ -#include +#include #include #include @@ -39,7 +39,7 @@ public: const KUrl& url() const; /** Returns the current selected items of the active Dolphin view. */ - const KFileItemList& selection() const; + const QList& selection() const; public slots: /** @@ -52,11 +52,11 @@ public slots: * This is invoked to inform the sidebar that the user has selected a new * set of items. */ - virtual void setSelection(const KFileItemList& selection); + virtual void setSelection(const QList& selection); signals: /** - * This signal is emited when the sidebar requests an URL-change in the + * This signal is emitted when the sidebar requests an URL-change in the * currently active file-management view. The view is not requested to * accept this change, if it is accepted the sidebar will be informed via * the setUrl() slot. @@ -70,7 +70,7 @@ signals: * e.g. the current folder. The new selection will be reported via the * setSelection slot. */ - void changeSelection(const KFileItemList& selection); + void changeSelection(const QList& selection); /** * This signal is emitted whenever a drop action on this widget needs the @@ -80,7 +80,7 @@ signals: private: KUrl m_url; - KFileItemList m_currentSelection; + QList m_currentSelection; }; #endif // _SIDEBARPAGE_H_