aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/playlistmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmmpui/playlistmodel.cpp')
-rw-r--r--src/qmmpui/playlistmodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmmpui/playlistmodel.cpp b/src/qmmpui/playlistmodel.cpp
index 0c1a0ac33..17bfc7fd9 100644
--- a/src/qmmpui/playlistmodel.cpp
+++ b/src/qmmpui/playlistmodel.cpp
@@ -236,7 +236,7 @@ void PlayListModel::clearSelection()
emit listChanged();
}
-QList <QString> PlayListModel::getTitles(int b,int l)
+QStringList PlayListModel::getTitles(int b,int l)
{
QList <QString> m_titles;
for (int i = b;(i < b + l) &&(i < m_items.size()); ++i)
@@ -244,7 +244,7 @@ QList <QString> PlayListModel::getTitles(int b,int l)
return m_titles;
}
-QList <QString> PlayListModel::getTimes(int b,int l)
+QStringList PlayListModel::getTimes(int b,int l)
{
QList <QString> m_times;
int d = 0;