diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:48 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:35:48 -0600 |
commit | 5183781c5dddd8447b308c24b2d7f9257bd0bcad (patch) | |
tree | f1fa64e82ce281c97cf602ba207460a5d38dcfdd /libk3b/cddb/k3bcddbquery.cpp | |
parent | 09c863183250d07f82c0919e0a40fc7834c32192 (diff) | |
download | k3b-5183781c5dddd8447b308c24b2d7f9257bd0bcad.tar.gz k3b-5183781c5dddd8447b308c24b2d7f9257bd0bcad.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'libk3b/cddb/k3bcddbquery.cpp')
-rw-r--r-- | libk3b/cddb/k3bcddbquery.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libk3b/cddb/k3bcddbquery.cpp b/libk3b/cddb/k3bcddbquery.cpp index e4ccc75..ab6cb7f 100644 --- a/libk3b/cddb/k3bcddbquery.cpp +++ b/libk3b/cddb/k3bcddbquery.cpp @@ -226,7 +226,7 @@ TQString K3bCddbQuery::handshakeString() const if( host.isEmpty() ) host = "kde-host"; - return TQString("%1 %2 K3b %3").tqarg(user).tqarg(host).tqarg(kapp->aboutData()->version()); + return TQString("%1 %2 K3b %3").arg(user).arg(host).arg(kapp->aboutData()->version()); } @@ -238,10 +238,10 @@ TQString K3bCddbQuery::queryString() const + TQString::number( (unsigned int)m_toc.count() ); for( K3bDevice::Toc::const_iterator it = m_toc.begin(); it != m_toc.end(); ++it ) { - query.append( TQString( " %1" ).tqarg( (*it).firstSector().lba() ) ); + query.append( TQString( " %1" ).arg( (*it).firstSector().lba() ) ); } - query.append( TQString( " %1" ).tqarg( m_toc.length().lba() / 75 ) ); + query.append( TQString( " %1" ).arg( m_toc.length().lba() / 75 ) ); return query; } |