diff options
Diffstat (limited to 'kopete/protocols/meanwhile')
-rw-r--r-- | kopete/protocols/meanwhile/meanwhilesession.cpp | 6 | ||||
-rw-r--r-- | kopete/protocols/meanwhile/meanwhilesession.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kopete/protocols/meanwhile/meanwhilesession.cpp b/kopete/protocols/meanwhile/meanwhilesession.cpp index 5f367540..3b880932 100644 --- a/kopete/protocols/meanwhile/meanwhilesession.cpp +++ b/kopete/protocols/meanwhile/meanwhilesession.cpp @@ -426,7 +426,7 @@ void MeanwhileSession::syncContactsToServer() if (contactgroup->type() == Kopete::Group::TopLevel) { stgroup = topstgroup; } else { - /* tqfind (or create) a matching sametime list group */ + /* find (or create) a matching sametime list group */ stgroup = mwSametimeList_findGroup(list, contactgroup->displayName().ascii()); if (stgroup == 0L) { @@ -555,10 +555,10 @@ TQString MeanwhileSession::getNickName(struct mwLoginInfo *logininfo) TQString MeanwhileSession::getNickName(TQString name) { - int index = name.tqfind(" - "); + int index = name.find(" - "); if (index != -1) name = name.remove(0, index + 3); - index = name.tqfind('/'); + index = name.find('/'); if (index != -1) name = name.left(index); diff --git a/kopete/protocols/meanwhile/meanwhilesession.h b/kopete/protocols/meanwhile/meanwhilesession.h index 9d583a8b..040d0c2a 100644 --- a/kopete/protocols/meanwhile/meanwhilesession.h +++ b/kopete/protocols/meanwhile/meanwhilesession.h @@ -229,7 +229,7 @@ private: TQString getNickName(struct mwLoginInfo *logininfo); /** - * Resolve a contact to tqfind (and set) the display name. This requires the + * Resolve a contact to find (and set) the display name. This requires the * session to be connected to use the meanwhile resolve service. * @param contact The contact to resolve */ |