diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | d0be1721b4656109c9e21cc0ecb6f23b343b7c26 (patch) | |
tree | 211c399f4274325783e6f9995153aac359876116 /kopete/libkopete/kopeteaccount.cpp | |
parent | 1fff1cf07591b1226eb568e95283091eedbeff1d (diff) | |
download | tdenetwork-d0be1721b4656109c9e21cc0ecb6f23b343b7c26.tar.gz tdenetwork-d0be1721b4656109c9e21cc0ecb6f23b343b7c26.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/kopeteaccount.cpp')
-rw-r--r-- | kopete/libkopete/kopeteaccount.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/libkopete/kopeteaccount.cpp b/kopete/libkopete/kopeteaccount.cpp index 11f668d8..0477ccd3 100644 --- a/kopete/libkopete/kopeteaccount.cpp +++ b/kopete/libkopete/kopeteaccount.cpp @@ -278,42 +278,42 @@ Kopete::MetaContact* Account::addContact( const TQString &contactId, const TQStr } else { - // should we here add the contact to the tqparentContact if any? + // should we here add the contact to the parentContact if any? kdDebug( 14010 ) << k_funcinfo << "Contact already exists" << endl; } return c->metaContact(); } - MetaContact *tqparentContact = new MetaContact(); + MetaContact *parentContact = new MetaContact(); if(!displayName.isEmpty()) - tqparentContact->setDisplayName( displayName ); + parentContact->setDisplayName( displayName ); //Set it as a temporary contact if requested if ( isTemporary ) - tqparentContact->setTemporary( true ); + parentContact->setTemporary( true ); else - tqparentContact->addToGroup( group ); + parentContact->addToGroup( group ); if ( c ) { - c->setMetaContact( tqparentContact ); + c->setMetaContact( parentContact ); if ( mode == ChangeKABC ) { kdDebug( 14010 ) << k_funcinfo << " changing KABC" << endl; - KABCPersistence::self()->write( tqparentContact ); + KABCPersistence::self()->write( parentContact ); } } else { - if ( !createContact( contactId, tqparentContact ) ) + if ( !createContact( contactId, parentContact ) ) { - delete tqparentContact; + delete parentContact; return 0L; } } - ContactList::self()->addMetaContact( tqparentContact ); - return tqparentContact; + ContactList::self()->addMetaContact( parentContact ); + return parentContact; } bool Account::addContact(const TQString &contactId , MetaContact *tqparent, AddMode mode ) @@ -341,7 +341,7 @@ bool Account::addContact(const TQString &contactId , MetaContact *tqparent, AddM } else { - // should we here add the contact to the tqparentContact if any? + // should we here add the contact to the parentContact if any? kdDebug( 14010 ) << "Account::addContact: Contact already exists" << endl; } return false; //(the contact is not in the correct metacontact, so false) |