summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/liboscar/ownuserinfotask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/oscar/liboscar/ownuserinfotask.cpp')
-rw-r--r--kopete/protocols/oscar/liboscar/ownuserinfotask.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/protocols/oscar/liboscar/ownuserinfotask.cpp b/kopete/protocols/oscar/liboscar/ownuserinfotask.cpp
index a1baf073..2cf57d53 100644
--- a/kopete/protocols/oscar/liboscar/ownuserinfotask.cpp
+++ b/kopete/protocols/oscar/liboscar/ownuserinfotask.cpp
@@ -16,7 +16,7 @@
*************************************************************************
*/
#include "ownuserinfotask.h"
-#include <qcstring.h>
+#include <tqcstring.h>
#include <kdebug.h>
#include "buffer.h"
#include "connection.h"
@@ -70,7 +70,7 @@ bool OwnUserInfoTask::take( Transfer* transfer )
ud.fill( b );
m_details = ud;
emit gotInfo();
- setSuccess( 0, QString::null );
+ setSuccess( 0, TQString::null );
return true;
}
else
@@ -83,7 +83,7 @@ bool OwnUserInfoTask::take( Transfer* transfer )
if ( flags == 0x41 ) //we need to do a buddy upload when bit 8 = 1
needUpload = true;
- QByteArray qba;
+ TQByteArray qba;
if ( b->length() != 0 )
{ //buffer might be empty if flags bit 8 = 1
BYTE checksumLength = b->getByte();
@@ -104,11 +104,11 @@ bool OwnUserInfoTask::take( Transfer* transfer )
if ( infoType == 0x0002 )
{
- QString availableMsg( b->getBSTR() );
+ TQString availableMsg( b->getBSTR() );
kdDebug(OSCAR_RAW_DEBUG) << k_funcinfo << "self available message: " << endl;
}
- setSuccess( 0, QString::null );
+ setSuccess( 0, TQString::null );
return true;
}