From kde-commits Wed Aug 27 00:05:23 2003 From: Till Gerken Date: Wed, 27 Aug 2003 00:05:23 +0000 To: kde-commits Subject: kdenonbeta/kopete/protocols/jabber X-MARC-Message: https://marc.info/?l=kde-commits&m=106194284319997 CVS commit by gerken: Create fake nickname that only shows the username in the chat dialogs, looks cleaner M +1 -1 jabberaccount.cpp 1.74 --- kdenonbeta/kopete/protocols/jabber/jabberaccount.cpp #1.73:1.74 @@ -73,5 +73,5 @@ JabberAccount::JabberAccount (JabberProt /* Create a new JabberContact for this account, to be returned from * myself(). */ - myContact = new JabberContact (accountId, accountId, QStringList (), this, 0L, accountId, "jabber_offline"); + myContact = new JabberContact (accountId, accountId.section('@', 0, 0), QStringList (), this, 0L, accountId, "jabber_offline"); jabberClient = 0L;