diff options
Diffstat (limited to 'libkcddb/cddbplookup.cpp')
-rw-r--r-- | libkcddb/cddbplookup.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkcddb/cddbplookup.cpp b/libkcddb/cddbplookup.cpp index b07d7346..cd287b99 100644 --- a/libkcddb/cddbplookup.cpp +++ b/libkcddb/cddbplookup.cpp @@ -39,7 +39,7 @@ namespace KCDDB void CDDBPLookup::sendHandshake() { - QString handshake = QString( "cddb hello %1 %2 %3 %4" ) + TQString handshake = TQString( "cddb hello %1 %2 %3 %4" ) .arg( user_ ) .arg( localHostName_ ) .arg( clientName() ) @@ -57,7 +57,7 @@ namespace KCDDB void CDDBPLookup::sendQuery() { - QString query = QString( "cddb query %1 %2" ) + TQString query = TQString( "cddb query %1 %2" ) .arg( trackOffsetListToId() ) .arg( trackOffsetListToString() ); @@ -68,9 +68,9 @@ namespace KCDDB CDDBPLookup::sendRead( const CDDBMatch & match ) { category_ = match.first; - QString discid = match.second; + TQString discid = match.second; - QString readRequest = QString( "cddb read %1 %2" ) + TQString readRequest = TQString( "cddb read %1 %2" ) .arg( category_ ) .arg( discid ); @@ -94,7 +94,7 @@ namespace KCDDB } Q_LONG - CDDBPLookup::writeLine( const QString & line ) + CDDBPLookup::writeLine( const TQString & line ) { if ( !isConnected() ) { @@ -103,7 +103,7 @@ namespace KCDDB } kdDebug(60010) << "WRITE: [" << line << "]" << endl; - QCString buf = line.utf8(); + TQCString buf = line.utf8(); buf.append( "\n" ); return socket_->writeBlock( buf.data(), buf.length() ); |