diff -U4 -r psi-0.11/src/chatdlg.cpp psi-0.11+byte/src/chatdlg.cpp --- psi-0.11/src/chatdlg.cpp 2007-10-14 15:00:51.000000000 +0100 +++ psi-0.11+byte/src/chatdlg.cpp 2008-05-14 19:39:56.000000000 +0100 @@ -883,10 +883,12 @@ { QString cap = ""; if(d->pending > 0) { +#if 0 cap += "* "; if(d->pending > 1) +#endif cap += QString("[%1] ").arg(d->pending); } cap += d->dispNick; diff -U4 -r psi-0.11/src/groupchatdlg.cpp psi-0.11+byte/src/groupchatdlg.cpp --- psi-0.11/src/groupchatdlg.cpp 2007-10-14 15:00:51.000000000 +0100 +++ psi-0.11+byte/src/groupchatdlg.cpp 2008-05-14 19:40:13.000000000 +0100 @@ -1354,10 +1354,12 @@ { QString cap = ""; if(d->pending > 0) { +#if 0 cap += "* "; if(d->pending > 1) +#endif cap += QString("[%1] ").arg(d->pending); } cap += d->jid.full(); diff -U4 -r psi-0.11/src/mainwin.cpp psi-0.11+byte/src/mainwin.cpp --- psi-0.11/src/mainwin.cpp 2007-10-14 15:00:52.000000000 +0100 +++ psi-0.11+byte/src/mainwin.cpp 2008-05-14 19:43:14.000000000 +0100 @@ -938,9 +938,13 @@ { QString str = ""; if(d->nextAmount > 0) +#if 0 str += "* "; +#else + str += QString("[%1] ").arg(d->nextAmount); +#endif if(d->nickname.isEmpty()) str += ApplicationInfo::name(); else diff -U4 -r psi-0.11/src/tabdlg.cpp psi-0.11+byte/src/tabdlg.cpp --- psi-0.11/src/tabdlg.cpp 2007-10-14 15:00:54.000000000 +0100 +++ psi-0.11+byte/src/tabdlg.cpp 2008-05-14 19:41:26.000000000 +0100 @@ -345,10 +345,12 @@ { pending+=tabHasMessages.values()[i]; } if(pending > 0) { +#if 0 cap += "* "; if(pending > 1) +#endif cap += QString("[%1] ").arg(pending); } cap += getName(); if (tabIsComposing[(ChatDlg*)(tabs->currentPage())]) @@ -397,12 +399,14 @@ if (num == 0) { prefix=""; } +#if 0 else if (num == 1) { prefix="* "; } +#endif else { prefix=QString("[%1] ").arg(num); } diff -U4 -r psi-0.11/src/wbdlg.cpp psi-0.11+byte/src/wbdlg.cpp --- psi-0.11/src/wbdlg.cpp 2007-10-14 15:00:55.000000000 +0100 +++ psi-0.11+byte/src/wbdlg.cpp 2008-05-14 19:41:12.000000000 +0100 @@ -479,10 +479,12 @@ void WbDlg::updateCaption() { QString cap = ""; if(pending_ > 0) { +#if 0 cap += "* "; if(pending_ > 1) +#endif cap += QString("[%1] ").arg(pending_); } cap += target_.full();