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.cpp | |
| 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.cpp')
| -rw-r--r-- | src/sidebarpage.cpp | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/sidebarpage.cpp b/src/sidebarpage.cpp index 889dc48c4..594f59f24 100644 --- a/src/sidebarpage.cpp +++ b/src/sidebarpage.cpp @@ -25,8 +25,7 @@ SidebarPage::SidebarPage(QWidget* parent) : QWidget(parent), - m_url(KUrl()), - m_currentSelection() + m_url(KUrl()) { } @@ -39,19 +38,9 @@ const KUrl& SidebarPage::url() const return m_url; } -const KFileItemList& SidebarPage::selection() const -{ - return m_currentSelection; -} - void SidebarPage::setUrl(const KUrl& url) { m_url = url; } -void SidebarPage::setSelection(const KFileItemList& selection) -{ - m_currentSelection = selection; -} - #include "sidebarpage.moc" |
