summaryrefslogtreecommitdiffstats
path: root/libkcddb/cddbplookup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkcddb/cddbplookup.cpp')
-rw-r--r--libkcddb/cddbplookup.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/libkcddb/cddbplookup.cpp b/libkcddb/cddbplookup.cpp
index db62cbae..839d2650 100644
--- a/libkcddb/cddbplookup.cpp
+++ b/libkcddb/cddbplookup.cpp
@@ -40,10 +40,10 @@ namespace KCDDB
CDDBPLookup::sendHandshake()
{
TQString handshake = TQString( "cddb hello %1 %2 %3 %4" )
- .tqarg( user_ )
- .tqarg( localHostName_ )
- .tqarg( clientName() )
- .tqarg( clientVersion() );
+ .arg( user_ )
+ .arg( localHostName_ )
+ .arg( clientName() )
+ .arg( clientVersion() );
writeLine( handshake );
}
@@ -58,8 +58,8 @@ namespace KCDDB
CDDBPLookup::sendQuery()
{
TQString query = TQString( "cddb query %1 %2" )
- .tqarg( trackOffsetListToId() )
- .tqarg( trackOffsetListToString() );
+ .arg( trackOffsetListToId() )
+ .arg( trackOffsetListToString() );
writeLine( query );
}
@@ -71,8 +71,8 @@ namespace KCDDB
TQString discid = match.second;
TQString readRequest = TQString( "cddb read %1 %2" )
- .tqarg( category_ )
- .tqarg( discid );
+ .arg( category_ )
+ .arg( discid );
writeLine( readRequest );
}