summaryrefslogtreecommitdiffstats
path: root/amarok/src/covermanager.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit1dbf3ff1cbb6d82a451bc319301bf38816c2c232 (patch)
tree3b5b9c88a3b91163735d364681b930369e039e69 /amarok/src/covermanager.cpp
parent54e817557b3e95bc4b93fd7daa26b808c021515e (diff)
downloadamarok-1dbf3ff1cbb6d82a451bc319301bf38816c2c232.tar.gz
amarok-1dbf3ff1cbb6d82a451bc319301bf38816c2c232.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amarok/src/covermanager.cpp')
-rw-r--r--amarok/src/covermanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/covermanager.cpp b/amarok/src/covermanager.cpp
index bf1c60ef..7ef53c29 100644
--- a/amarok/src/covermanager.cpp
+++ b/amarok/src/covermanager.cpp
@@ -586,7 +586,7 @@ void CoverManager::slotSetFilter() //SLOT
for( TQIconViewItem *item = m_coverItems.first(); item; item = m_coverItems.next() )
{
CoverViewItem *coverItem = static_cast<CoverViewItem*>(item);
- if( coverItem->album().tqcontains( m_filter, false ) || coverItem->artist().tqcontains( m_filter, false ) )
+ if( coverItem->album().contains( m_filter, false ) || coverItem->artist().contains( m_filter, false ) )
m_coverView->insertItem( item, m_coverView->lastItem() );
}
m_coverView->setAutoArrange( true );
@@ -621,7 +621,7 @@ void CoverManager::changeView( int id ) //SLOT
bool show = false;
CoverViewItem *coverItem = static_cast<CoverViewItem*>(item);
if( !m_filter.isEmpty() ) {
- if( !coverItem->album().tqcontains( m_filter, false ) && !coverItem->artist().tqcontains( m_filter, false ) )
+ if( !coverItem->album().contains( m_filter, false ) && !coverItem->artist().contains( m_filter, false ) )
continue;
}