summaryrefslogtreecommitdiffstats
path: root/juk/treeviewitemplaylist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/treeviewitemplaylist.cpp')
-rw-r--r--juk/treeviewitemplaylist.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/juk/treeviewitemplaylist.cpp b/juk/treeviewitemplaylist.cpp
index 9096979a..22872760 100644
--- a/juk/treeviewitemplaylist.cpp
+++ b/juk/treeviewitemplaylist.cpp
@@ -18,8 +18,8 @@
#include <kmessagebox.h>
#include <klocale.h>
-#include <qstringlist.h>
-#include <qlistview.h>
+#include <tqstringlist.h>
+#include <tqlistview.h>
#include "collectionlist.h"
#include "treeviewitemplaylist.h"
@@ -30,21 +30,21 @@
TreeViewItemPlaylist::TreeViewItemPlaylist(PlaylistCollection *collection,
const PlaylistSearch &search,
- const QString &name) :
+ const TQString &name) :
SearchPlaylist(collection, search, name, false)
{
PlaylistSearch::Component component = *(search.components().begin());
m_columnType = static_cast<PlaylistItem::ColumnType>(*(component.columns().begin()));
}
-void TreeViewItemPlaylist::retag(const QStringList &files, Playlist *)
+void TreeViewItemPlaylist::retag(const TQStringList &files, Playlist *)
{
CollectionList *collection = CollectionList::instance();
if(files.isEmpty())
return;
- QString changedTag = i18n("artist");
+ TQString changedTag = i18n("artist");
if(m_columnType == PlaylistItem::GenreColumn)
changedTag = i18n("genre");
else if(m_columnType == PlaylistItem::AlbumColumn)
@@ -62,7 +62,7 @@ void TreeViewItemPlaylist::retag(const QStringList &files, Playlist *)
return;
}
- QStringList::ConstIterator it;
+ TQStringList::ConstIterator it;
for(it = files.begin(); it != files.end(); ++it) {
CollectionListItem *item = collection->lookup(*it);
if(!item)