|
|
|
@ -69,7 +69,7 @@ void NLKscd::update()
|
|
|
|
|
<< endl;
|
|
|
|
|
else {
|
|
|
|
|
TQDataStream reply( replyData, IO_ReadOnly );
|
|
|
|
|
if ( replyType == TQSTRING_OBJECT_NAME_STRING )
|
|
|
|
|
if ( replyType == "QString" || replyType == "TQString" )
|
|
|
|
|
reply >> m_artist;
|
|
|
|
|
else
|
|
|
|
|
kdDebug( 14307 ) << "NLKscd::update() trackList returned unexpected reply type!" << endl;
|
|
|
|
@ -82,7 +82,7 @@ void NLKscd::update()
|
|
|
|
|
<< endl;
|
|
|
|
|
else {
|
|
|
|
|
TQDataStream reply( replyData, IO_ReadOnly );
|
|
|
|
|
if ( replyType == TQSTRING_OBJECT_NAME_STRING )
|
|
|
|
|
if ( replyType == "QString" || replyType == "TQString" )
|
|
|
|
|
reply >> m_album;
|
|
|
|
|
else
|
|
|
|
|
kdDebug( 14307 ) << "NLKscd::update() trackList returned unexpected reply type!" << endl;
|
|
|
|
@ -94,7 +94,7 @@ void NLKscd::update()
|
|
|
|
|
kdDebug( 14307 ) << "NLKscd::update() - there was some error using DCOP." << endl;
|
|
|
|
|
else {
|
|
|
|
|
TQDataStream reply( replyData, IO_ReadOnly );
|
|
|
|
|
if ( replyType == TQSTRING_OBJECT_NAME_STRING ) {
|
|
|
|
|
if ( replyType == "QString" || replyType == "TQString" ) {
|
|
|
|
|
reply >> newTrack;
|
|
|
|
|
//kdDebug( 14307 ) << "the result is: " << newTrack.latin1()
|
|
|
|
|
// << endl;
|
|
|
|
|