SidebarPage::SidebarPage(QWidget* parent) :
QWidget(parent),
m_url(KUrl()),
- m_currentSelection(KFileItemList())
+ m_currentSelection()
{
}
return m_url;
}
-const KFileItemList& SidebarPage::selection() const
+const QList<KFileItem>& SidebarPage::selection() const
{
return m_currentSelection;
}
m_url = url;
}
-void SidebarPage::setSelection(const KFileItemList& selection)
+void SidebarPage::setSelection(const QList<KFileItem>& selection)
{
m_currentSelection = selection;
}