SidebarPage::SidebarPage(QWidget* parent) :
QWidget(parent),
- m_url(KUrl()),
- m_currentSelection()
+ m_url(KUrl())
{
}
return m_url;
}
-const QList<KFileItem>& SidebarPage::selection() const
-{
- return m_currentSelection;
-}
-
void SidebarPage::setUrl(const KUrl& url)
{
m_url = url;
}
-void SidebarPage::setSelection(const QList<KFileItem>& selection)
-{
- m_currentSelection = selection;
-}
-
#include "sidebarpage.moc"