┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/sidebarpage.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-10-02 19:03:03 +0000
committerPeter Penz <[email protected]>2007-10-02 19:03:03 +0000
commitba150e5735bd336752f713df1e9f66b7ed90e6ae (patch)
treeba9a0cd18fd9b78e810af113f21b8061756f23a8 /src/sidebarpage.cpp
parent4a2416e4bd9b646772d0c1da52a7e57a4cf8ec04 (diff)
replace QList<KFileItem> by KFileItemList, as KFileItemList is not QList<KFileItem*> anymore since todays update of kfileitem.* in kdelibs
svn path=/trunk/KDE/kdebase/apps/; revision=720234
Diffstat (limited to 'src/sidebarpage.cpp')
-rw-r--r--src/sidebarpage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sidebarpage.cpp b/src/sidebarpage.cpp
index 1543c8c78..889dc48c4 100644
--- a/src/sidebarpage.cpp
+++ b/src/sidebarpage.cpp
@@ -39,7 +39,7 @@ const KUrl& SidebarPage::url() const
return m_url;
}
-const QList<KFileItem>& SidebarPage::selection() const
+const KFileItemList& SidebarPage::selection() const
{
return m_currentSelection;
}
@@ -49,7 +49,7 @@ void SidebarPage::setUrl(const KUrl& url)
m_url = url;
}
-void SidebarPage::setSelection(const QList<KFileItem>& selection)
+void SidebarPage::setSelection(const KFileItemList& selection)
{
m_currentSelection = selection;
}