]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/sidebarpage.cpp
use a smaller step size when using the scroll wheel
[dolphin.git] / src / sidebarpage.cpp
index cb0e516e7d4708e6f4943f5ad577648ab78eb963..594f59f24bcad6df0d01b407d0a43aef4b8a330e 100644 (file)
@@ -25,8 +25,7 @@
 
 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"