diff options
Diffstat (limited to 'amarok/src/queuemanager.cpp')
-rw-r--r-- | amarok/src/queuemanager.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/amarok/src/queuemanager.cpp b/amarok/src/queuemanager.cpp index 39510bb8..cec41390 100644 --- a/amarok/src/queuemanager.cpp +++ b/amarok/src/queuemanager.cpp @@ -105,9 +105,9 @@ QueueList::viewportPaintEvent( TQPaintEvent *e ) const uint x = (viewport()->width() - w - 30) / 2 ; const uint y = (viewport()->height() - h - 30) / 2 ; - p.setBrush( tqcolorGroup().background() ); + p.setBrush( colorGroup().background() ); p.drawRoundRect( x, y, w+30, h+30, (8*200)/w, (8*200)/h ); - t.draw( &p, x+15, y+15, TQRect(), tqcolorGroup() ); + t.draw( &p, x+15, y+15, TQRect(), colorGroup() ); } } @@ -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; |