summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/yahoo/libkyahoo/filetransfernotifiertask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/yahoo/libkyahoo/filetransfernotifiertask.cpp')
-rw-r--r--kopete/protocols/yahoo/libkyahoo/filetransfernotifiertask.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/kopete/protocols/yahoo/libkyahoo/filetransfernotifiertask.cpp b/kopete/protocols/yahoo/libkyahoo/filetransfernotifiertask.cpp
index e011dfeb..fd9657f7 100644
--- a/kopete/protocols/yahoo/libkyahoo/filetransfernotifiertask.cpp
+++ b/kopete/protocols/yahoo/libkyahoo/filetransfernotifiertask.cpp
@@ -20,8 +20,8 @@
#include "yahootypes.h"
#include "client.h"
-#include <qstring.h>
-#include <qpixmap.h>
+#include <tqstring.h>
+#include <tqpixmap.h>
#include <kdebug.h>
//#include <kcodecs.h>
@@ -76,12 +76,12 @@ void FileTransferNotifierTask::parseFileTransfer( YMSGTransfer *t )
{
kdDebug(YAHOO_RAW_DEBUG) ;
- QString from; /* key = 4 */
- QString to; /* key = 5 */
- QString url; /* key = 20 */
+ TQString from; /* key = 4 */
+ TQString to; /* key = 5 */
+ TQString url; /* key = 20 */
long expires; /* key = 38 */
- QString msg; /* key = 14 */
- QString filename; /* key = 27 */
+ TQString msg; /* key = 14 */
+ TQString filename; /* key = 27 */
unsigned long size; /* key = 28 */
from = t->firstParam( 4 );
@@ -108,22 +108,22 @@ void FileTransferNotifierTask::parseFileTransfer( YMSGTransfer *t )
unsigned int right = url.findRev( '?' );
filename = url.mid( left, right - left );
- emit incomingFileTransfer( from, url, expires, msg, filename, size, QPixmap() );
+ emit incomingFileTransfer( from, url, expires, msg, filename, size, TQPixmap() );
}
void FileTransferNotifierTask::parseFileTransfer7( YMSGTransfer *t )
{
kdDebug(YAHOO_RAW_DEBUG) ;
- QString from; /* key = 4 */
- QString to; /* key = 5 */
- QString url; /* key = 20 */
+ TQString from; /* key = 4 */
+ TQString to; /* key = 5 */
+ TQString url; /* key = 20 */
long expires; /* key = 38 */
- QString msg; /* key = 14 */
- QString filename; /* key = 27 */
+ TQString msg; /* key = 14 */
+ TQString filename; /* key = 27 */
unsigned long size; /* key = 28 */
- QByteArray preview; /* key = 267 */
- QPixmap previewPixmap;
+ TQByteArray preview; /* key = 267 */
+ TQPixmap previewPixmap;
if( t->firstParam( 222 ).toInt() == 2 )
return; // user cancelled the file transfer
@@ -137,7 +137,7 @@ void FileTransferNotifierTask::parseFileTransfer7( YMSGTransfer *t )
size = t->firstParam( 28 ).toULong();
// FIXME (same)
- //preview = QByteArray::fromBase64( t->firstParam( 267 ) );
+ //preview = TQByteArray::fromBase64( t->firstParam( 267 ) );
if( preview.size() > 0 )
{