summaryrefslogtreecommitdiffstats
path: root/amarok/src/scrobbler.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/scrobbler.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/scrobbler.cpp')
-rw-r--r--amarok/src/scrobbler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/scrobbler.cpp b/amarok/src/scrobbler.cpp
index 74525985..3edcdaf0 100644
--- a/amarok/src/scrobbler.cpp
+++ b/amarok/src/scrobbler.cpp
@@ -712,7 +712,7 @@ void ScrobblerSubmitter::audioScrobblerHandshakeResult( KIO::Job* job ) //SLOT
// INTERVAL n (protocol 1.1)
else if ( m_submitResultBuffer.startsWith( "FAILED" ) )
{
- TQString reason = m_submitResultBuffer.mid( 0, m_submitResultBuffer.tqfind( "\n" ) );
+ TQString reason = m_submitResultBuffer.mid( 0, m_submitResultBuffer.find( "\n" ) );
if ( reason.length() > 6 )
reason = reason.mid( 7 ).stripWhiteSpace();
@@ -773,7 +773,7 @@ void ScrobblerSubmitter::audioScrobblerSubmitResult( KIO::Job* job ) //SLOT
// INTERVAL n (protocol 1.1)
else if ( m_submitResultBuffer.startsWith( "FAILED" ) )
{
- TQString reason = m_submitResultBuffer.mid( 0, m_submitResultBuffer.tqfind( "\n" ) );
+ TQString reason = m_submitResultBuffer.mid( 0, m_submitResultBuffer.find( "\n" ) );
if ( reason.length() > 6 )
reason = reason.mid( 7 ).stripWhiteSpace();