summaryrefslogtreecommitdiffstats
path: root/libkcddb/cddbplookup.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 06:00:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 06:00:15 +0000
commitb1057f437bf65300831a0ccb45b920787c6b318d (patch)
treef8a73db06ca1180d0da0ba6dfbe786197b4f4bc3 /libkcddb/cddbplookup.cpp
parent4ddfca384ced9ad654213aef9dc2c3973720b980 (diff)
downloadtdemultimedia-b1057f437bf65300831a0ccb45b920787c6b318d.tar.gz
tdemultimedia-b1057f437bf65300831a0ccb45b920787c6b318d.zip
TQt4 port kdemultimedia
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1236079 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcddb/cddbplookup.cpp')
-rw-r--r--libkcddb/cddbplookup.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/libkcddb/cddbplookup.cpp b/libkcddb/cddbplookup.cpp
index cd287b99..db62cbae 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" )
- .arg( user_ )
- .arg( localHostName_ )
- .arg( clientName() )
- .arg( clientVersion() );
+ .tqarg( user_ )
+ .tqarg( localHostName_ )
+ .tqarg( clientName() )
+ .tqarg( clientVersion() );
writeLine( handshake );
}
@@ -58,8 +58,8 @@ namespace KCDDB
CDDBPLookup::sendQuery()
{
TQString query = TQString( "cddb query %1 %2" )
- .arg( trackOffsetListToId() )
- .arg( trackOffsetListToString() );
+ .tqarg( trackOffsetListToId() )
+ .tqarg( trackOffsetListToString() );
writeLine( query );
}
@@ -71,8 +71,8 @@ namespace KCDDB
TQString discid = match.second;
TQString readRequest = TQString( "cddb read %1 %2" )
- .arg( category_ )
- .arg( discid );
+ .tqarg( category_ )
+ .tqarg( discid );
writeLine( readRequest );
}
@@ -93,7 +93,7 @@ namespace KCDDB
}
}
- Q_LONG
+ TQ_LONG
CDDBPLookup::writeLine( const TQString & line )
{
if ( !isConnected() )