summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/kimifaceimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/kimifaceimpl.cpp')
-rw-r--r--kopete/kopete/kimifaceimpl.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/kopete/kimifaceimpl.cpp b/kopete/kopete/kimifaceimpl.cpp
index 6e621c04..b9fffeb2 100644
--- a/kopete/kopete/kimifaceimpl.cpp
+++ b/kopete/kopete/kimifaceimpl.cpp
@@ -58,7 +58,7 @@ TQStringList KIMIfaceImpl::allContacts()
TQPtrListIterator<Kopete::MetaContact> it( list );
for( ; it.current(); ++it )
{
- if ( !it.current()->metaContactId().tqcontains(':') )
+ if ( !it.current()->metaContactId().contains(':') )
result.append( it.current()->metaContactId() );
}
@@ -72,7 +72,7 @@ TQStringList KIMIfaceImpl::reachableContacts()
TQPtrListIterator<Kopete::MetaContact> it( list );
for( ; it.current(); ++it )
{
- if ( it.current()->isReachable() && !it.current()->metaContactId().tqcontains(':') )
+ if ( it.current()->isReachable() && !it.current()->metaContactId().contains(':') )
result.append( it.current()->metaContactId() );
}
@@ -86,7 +86,7 @@ TQStringList KIMIfaceImpl::onlineContacts()
TQPtrListIterator<Kopete::MetaContact> it( list );
for( ; it.current(); ++it )
{
- if ( it.current()->isOnline() && !it.current()->metaContactId().tqcontains(':') )
+ if ( it.current()->isOnline() && !it.current()->metaContactId().contains(':') )
result.append( it.current()->metaContactId() );
}
@@ -100,7 +100,7 @@ TQStringList KIMIfaceImpl::fileTransferContacts()
TQPtrListIterator<Kopete::MetaContact> it( list );
for( ; it.current(); ++it )
{
- if ( it.current()->canAcceptFiles() && !it.current()->metaContactId().tqcontains(':') )
+ if ( it.current()->canAcceptFiles() && !it.current()->metaContactId().contains(':') )
result.append( it.current()->metaContactId() );
}
@@ -338,7 +338,7 @@ void KIMIfaceImpl::slotMetaContactAdded( Kopete::MetaContact *mc )
void KIMIfaceImpl::slotContactStatusChanged( Kopete::MetaContact *mc )
{
- if ( !mc->metaContactId().tqcontains( ':' ) )
+ if ( !mc->metaContactId().contains( ':' ) )
{
int p = -1;
Kopete::OnlineStatus status = mc->status();