summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/nowlistening/nlkscd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/plugins/nowlistening/nlkscd.cpp')
-rw-r--r--kopete/plugins/nowlistening/nlkscd.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kopete/plugins/nowlistening/nlkscd.cpp b/kopete/plugins/nowlistening/nlkscd.cpp
index a20c809b..06bf6c28 100644
--- a/kopete/plugins/nowlistening/nlkscd.cpp
+++ b/kopete/plugins/nowlistening/nlkscd.cpp
@@ -22,7 +22,7 @@
*/
#include <kdebug.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include "nlmediaplayer.h"
@@ -38,13 +38,13 @@ NLKscd::NLKscd( DCOPClient *client ) : NLMediaPlayer()
void NLKscd::update()
{
m_playing = false;
- QString newTrack;
+ TQString newTrack;
// see if it's registered with DCOP
if ( m_client->isApplicationRegistered( "kscd" ) )
{
// see if it's playing
- QByteArray data, replyData;
- QCString replyType;
+ TQByteArray data, replyData;
+ TQCString replyType;
if ( !m_client->call( "kscd", "CDPlayer", "playing()", data,
replyType, replyData ) )
{
@@ -55,7 +55,7 @@ void NLKscd::update()
}
else
{
- QDataStream reply( replyData, IO_ReadOnly );
+ TQDataStream reply( replyData, IO_ReadOnly );
if ( replyType == "bool" ) {
reply >> m_playing;
// kdDebug( 14307 ) << "NLKscd::update() - KsCD is " <<
@@ -68,8 +68,8 @@ void NLKscd::update()
kdDebug( 14307 ) << "NLKscd::update() DCOP error"
<< endl;
else {
- QDataStream reply( replyData, IO_ReadOnly );
- if ( replyType == "QString" )
+ TQDataStream reply( replyData, IO_ReadOnly );
+ if ( replyType == "TQString" )
reply >> m_artist;
else
kdDebug( 14307 ) << "NLKscd::update() trackList returned unexpected reply type!" << endl;
@@ -81,8 +81,8 @@ void NLKscd::update()
kdDebug( 14307 ) << "NLKscd::update() DCOP error"
<< endl;
else {
- QDataStream reply( replyData, IO_ReadOnly );
- if ( replyType == "QString" )
+ TQDataStream reply( replyData, IO_ReadOnly );
+ if ( replyType == "TQString" )
reply >> m_album;
else
kdDebug( 14307 ) << "NLKscd::update() trackList returned unexpected reply type!" << endl;
@@ -93,8 +93,8 @@ void NLKscd::update()
"currentTrackTitle()", data, replyType, replyData ) )
kdDebug( 14307 ) << "NLKscd::update() - there was some error using DCOP." << endl;
else {
- QDataStream reply( replyData, IO_ReadOnly );
- if ( replyType == "QString" ) {
+ TQDataStream reply( replyData, IO_ReadOnly );
+ if ( replyType == "TQString" ) {
reply >> newTrack;
//kdDebug( 14307 ) << "the result is: " << newTrack.latin1()
// << endl;