X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/bafaf9496cc439c461e249057e5d913e9aa734fc..b3beb9e0c2ff8cdc77f9a48e3416877e5bad0918:/src/sidebarpage.cpp diff --git a/src/sidebarpage.cpp b/src/sidebarpage.cpp index 479bfcad0..594f59f24 100644 --- a/src/sidebarpage.cpp +++ b/src/sidebarpage.cpp @@ -19,14 +19,13 @@ ***************************************************************************/ #include "sidebarpage.h" -#include +#include #include #include SidebarPage::SidebarPage(QWidget* parent) : QWidget(parent), - m_url(KUrl()), - m_currentSelection(KFileItemList()) + 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"