X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/bafaf9496cc439c461e249057e5d913e9aa734fc..ec00f379dc42b00a64ab1af25bb4bb1a06bd7449:/src/sidebarpage.cpp diff --git a/src/sidebarpage.cpp b/src/sidebarpage.cpp index 479bfcad0..1543c8c78 100644 --- a/src/sidebarpage.cpp +++ b/src/sidebarpage.cpp @@ -19,14 +19,14 @@ ***************************************************************************/ #include "sidebarpage.h" -#include +#include #include #include SidebarPage::SidebarPage(QWidget* parent) : QWidget(parent), m_url(KUrl()), - m_currentSelection(KFileItemList()) + m_currentSelection() { } @@ -39,7 +39,7 @@ const KUrl& SidebarPage::url() const return m_url; } -const KFileItemList& SidebarPage::selection() const +const QList& SidebarPage::selection() const { return m_currentSelection; } @@ -49,7 +49,7 @@ void SidebarPage::setUrl(const KUrl& url) m_url = url; } -void SidebarPage::setSelection(const KFileItemList& selection) +void SidebarPage::setSelection(const QList& selection) { m_currentSelection = selection; }