]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/sidebarpage.cpp
There are some extractable strings in subdirs too.
[dolphin.git] / src / sidebarpage.cpp
index 479bfcad0e9164f0b3a5f2fa286c3b450217fa5e..594f59f24bcad6df0d01b407d0a43aef4b8a330e 100644 (file)
  ***************************************************************************/
 
 #include "sidebarpage.h"
-#include <QWidget>
+#include <QtGui/QWidget>
 #include <kfileitem.h>
 #include <kurl.h>
 
 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"