┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/sidebarpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sidebarpage.h')
-rw-r--r--src/sidebarpage.h11
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_