diff options
| author | Peter Penz <[email protected]> | 2008-05-14 15:15:31 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-05-14 15:15:31 +0000 |
| commit | df55b9d89f0b064f1dfa0fd2ca0f6bd08ea0c8e4 (patch) | |
| tree | 8942f2693faac80a84a1f23ac2ff1bb811941f19 /src/sidebarpage.h | |
| parent | 620230729e9e935bac14283dab4de7c9f4fee321 (diff) | |
Only the infosidebar panel is interested in selections -> move it from the sidebar panel to the infosidebar panel.
svn path=/trunk/KDE/kdebase/apps/; revision=807729
Diffstat (limited to 'src/sidebarpage.h')
| -rw-r--r-- | src/sidebarpage.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/sidebarpage.h b/src/sidebarpage.h index 1c6b26be3..20a44758e 100644 --- a/src/sidebarpage.h +++ b/src/sidebarpage.h @@ -31,6 +31,7 @@ class SidebarPage : public QWidget { Q_OBJECT + public: explicit SidebarPage(QWidget* parent = 0); virtual ~SidebarPage(); @@ -38,9 +39,6 @@ public: /** Returns the current set URL of the active Dolphin view. */ const KUrl& url() const; - /** Returns the current selected items of the active Dolphin view. */ - const KFileItemList& selection() const; - public slots: /** * This is invoked every time the folder being displayed in the @@ -48,15 +46,8 @@ public slots: */ virtual void setUrl(const KUrl& url); - /** - * This is invoked to inform the sidebar that the user has selected a new - * set of items. - */ - virtual void setSelection(const KFileItemList& selection); - private: KUrl m_url; - KFileItemList m_currentSelection; }; #endif // _SIDEBARPAGE_H_ |
