diff options
Diffstat (limited to 'amarok/src/queuemanager.cpp')
-rw-r--r-- | amarok/src/queuemanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/amarok/src/queuemanager.cpp b/amarok/src/queuemanager.cpp index f76c3fa7..cec41390 100644 --- a/amarok/src/queuemanager.cpp +++ b/amarok/src/queuemanager.cpp @@ -373,7 +373,7 @@ QueueManager::addItems( TQListViewItem *after ) if( current.find( item ) == current.end() ) //avoid duplication { - TQString title = i18n("%1 - %2").tqarg( item->artist(), item->title() ); + TQString title = i18n("%1 - %2").arg( item->artist(), item->title() ); after = new QueueItem( m_listview, after, title ); m_map[ after ] = item; @@ -416,7 +416,7 @@ QueueManager::addQueuedItem( PlaylistItem *item ) TQValueList<PlaylistItem*> current = m_map.values(); TQValueListIterator<PlaylistItem*> newItem = current.find( item ); - TQString title = i18n("%1 - %2").tqarg( item->artist(), item->title() ); + TQString title = i18n("%1 - %2").arg( item->artist(), item->title() ); if( newItem == current.end() ) //avoid duplication { @@ -434,7 +434,7 @@ QueueManager::removeQueuedItem( PlaylistItem *item ) TQValueList<PlaylistItem*> current = m_map.values(); TQValueListIterator<PlaylistItem*> newItem = current.find( item ); - TQString title = i18n("%1 - %2").tqarg( item->artist(), item->title() ); + TQString title = i18n("%1 - %2").arg( item->artist(), item->title() ); TQListViewItem *removableItem = m_listview->findItem( title, 0 ); @@ -478,7 +478,7 @@ QueueManager::insertItems() for( PlaylistItem *item = list.first(); item; item = list.next() ) { - TQString title = i18n("%1 - %2").tqarg( item->artist(), item->title() ); + TQString title = i18n("%1 - %2").arg( item->artist(), item->title() ); last = new QueueItem( m_listview, last, title ); m_map[ last ] = item; |