summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/gadu/gaducontact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/gadu/gaducontact.cpp')
-rw-r--r--kopete/protocols/gadu/gaducontact.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/kopete/protocols/gadu/gaducontact.cpp b/kopete/protocols/gadu/gaducontact.cpp
index 2cb4806f..dfbb93a4 100644
--- a/kopete/protocols/gadu/gaducontact.cpp
+++ b/kopete/protocols/gadu/gaducontact.cpp
@@ -44,8 +44,8 @@
using Kopete::UserInfoDialog;
-GaduContact::GaduContact( uin_t uin, const QString& name, Kopete::Account* account, Kopete::MetaContact* parent )
-: Kopete::Contact( account, QString::number( uin ), parent ), uin_( uin )
+GaduContact::GaduContact( uin_t uin, const TQString& name, Kopete::Account* account, Kopete::MetaContact* parent )
+: Kopete::Contact( account, TQString::number( uin ), parent ), uin_( uin )
{
msgManager_ = 0L;
account_ = static_cast<GaduAccount*>( account );
@@ -78,7 +78,7 @@ GaduContact::identityId() const
}
void
-GaduContact::setParentIdentity( const QString& id)
+GaduContact::setParentIdentity( const TQString& id)
{
parentIdentity_ = id;
}
@@ -90,13 +90,13 @@ GaduContact::uin() const
}
void
-GaduContact::sendFile( const KURL &sourceURL, const QString &/*fileName*/, uint /*fileSize*/ )
+GaduContact::sendFile( const KURL &sourceURL, const TQString &/*fileName*/, uint /*fileSize*/ )
{
- QString filePath;
+ TQString filePath;
//If the file location is null, then get it from a file open dialog
if( !sourceURL.isValid() )
- filePath = KFileDialog::getOpenFileName(QString::null, "*", 0l , i18n("Kopete File Transfer"));
+ filePath = KFileDialog::getOpenFileName(TQString::null, "*", 0l , i18n("Kopete File Transfer"));
else
filePath = sourceURL.path(-1);
@@ -129,7 +129,7 @@ GaduContact::changedStatus( KGaduNotify* newstatus )
}
-QHostAddress&
+TQHostAddress&
GaduContact::contactIp()
{
return remote_ip;
@@ -146,9 +146,9 @@ GaduContact::manager( Kopete::Contact::CanCreateFlags canCreate )
{
if ( !msgManager_ && canCreate ) {
msgManager_ = Kopete::ChatSessionManager::self()->create( account_->myself(), thisContact_, GaduProtocol::protocol() );
- connect( msgManager_, SIGNAL( messageSent( Kopete::Message&, Kopete::ChatSession*) ),
- this, SLOT( messageSend( Kopete::Message&, Kopete::ChatSession*) ) );
- connect( msgManager_, SIGNAL( destroyed() ), this, SLOT( slotChatSessionDestroyed() ) );
+ connect( msgManager_, TQT_SIGNAL( messageSent( Kopete::Message&, Kopete::ChatSession*) ),
+ this, TQT_SLOT( messageSend( Kopete::Message&, Kopete::ChatSession*) ) );
+ connect( msgManager_, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( slotChatSessionDestroyed() ) );
}
kdDebug(14100) << "GaduContact::manager returning: " << msgManager_ << endl;
@@ -164,8 +164,8 @@ GaduContact::slotChatSessionDestroyed()
void
GaduContact::initActions()
{
- actionSendMessage_ = KopeteStdAction::sendMessage( this, SLOT( execute() ), this, "actionMessage" );
- actionInfo_ = KopeteStdAction::contactInfo( this, SLOT( slotUserInfo() ), this, "actionInfo" );
+ actionSendMessage_ = KopeteStdAction::sendMessage( this, TQT_SLOT( execute() ), this, "actionMessage" );
+ actionInfo_ = KopeteStdAction::contactInfo( this, TQT_SLOT( slotUserInfo() ), this, "actionInfo" );
}
void
@@ -190,19 +190,19 @@ GaduContact::isReachable()
return account_->isConnected();
}
-QPtrList<KAction>*
+TQPtrList<KAction>*
GaduContact::customContextMenuActions()
{
- QPtrList<KAction> *fakeCollection = new QPtrList<KAction>();
+ TQPtrList<KAction> *fakeCollection = new TQPtrList<KAction>();
//show profile
KAction* actionShowProfile = new KAction( i18n("Show Profile") , "info", 0,
- this, SLOT( slotShowPublicProfile() ),
+ this, TQT_SLOT( slotShowPublicProfile() ),
this, "actionShowPublicProfile" );
fakeCollection->append( actionShowProfile );
KAction* actionEditContact = new KAction( i18n("Edit...") , "edit", 0,
- this, SLOT( slotEditContact() ),
+ this, TQT_SLOT( slotEditContact() ),
this, "actionEditContact" );
fakeCollection->append( actionEditContact );
@@ -229,7 +229,7 @@ GaduContact::slotUserInfo()
UserInfoDialog *dlg = new UserInfoDialog( i18n( "Gadu contact" ) );
dlg->setName( metaContact()->displayName() );
- dlg->setId( QString::number( uin_ ) );
+ dlg->setId( TQString::number( uin_ ) );
dlg->setStatus( onlineStatus().description() );
dlg->setAwayMessage( description_ );
dlg->show();
@@ -250,7 +250,7 @@ GaduContact::deleteContact()
}
void
-GaduContact::serialize( QMap<QString, QString>& serializedData, QMap<QString, QString>& )
+GaduContact::serialize( TQMap<TQString, TQString>& serializedData, TQMap<TQString, TQString>& )
{
serializedData[ "email" ] = property( GaduProtocol::protocol()->propEmail ).value().toString();
serializedData[ "FirstName" ] = property( GaduProtocol::protocol()->propFirstName ).value().toString();
@@ -288,11 +288,11 @@ GaduContact::contactDetails()
cl->phonenr = property( GaduProtocol::protocol()->propPhoneNr ).value().toString();
cl->ignored = ignored_; //( property( "ignored" ).value().toString() == "true" );
- cl->uin = QString::number( uin_ );
+ cl->uin = TQString::number( uin_ );
cl->displayname = metaContact()->displayName();
cl->offlineTo = false;
- cl->landline = QString("");
+ cl->landline = TQString("");
groupList = metaContact()->groups();
@@ -318,7 +318,7 @@ GaduContact::contactDetails()
QString
GaduContact::findBestContactName( const GaduContactsList::ContactLine* cl )
{
- QString name;
+ TQString name;
if ( cl == NULL ) {
return name;