diff options
author | Robert Pösel <robyer@seznam.cz> | 2012-11-22 01:54:29 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2012-11-22 01:54:29 +0000 |
commit | 9ad7ef34209ba6887cd3102887748098a1ce8ce1 (patch) | |
tree | c83315ac93902517f235c20e796c8f761c0cd7a8 /protocols/Xfire/src/buddylist.cpp | |
parent | 511497e73d48eef2d2f87af6eeee5ff1a585c470 (diff) |
XFire: Status messages fixes and logic improvements.
Broken option for UTF8 nicks and statuses
"%s playing %s" -> "%s is playing %s"
git-svn-id: http://svn.miranda-ng.org/main/trunk@2427 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/buddylist.cpp')
-rw-r--r-- | protocols/Xfire/src/buddylist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Xfire/src/buddylist.cpp b/protocols/Xfire/src/buddylist.cpp index ea7e264502..b26d07266a 100644 --- a/protocols/Xfire/src/buddylist.cpp +++ b/protocols/Xfire/src/buddylist.cpp @@ -37,7 +37,7 @@ #include "baseProtocol.h" extern HANDLE handlingBuddys(xfirelib::BuddyListEntry *entry, int clan=0,char* group=NULL,BOOL dontscan=FALSE); -extern void setBuddyStatusMsg(xfirelib::BuddyListEntry *entry,std::string statusmsg); +extern void setBuddyStatusMsg(xfirelib::BuddyListEntry *entry); namespace xfirelib { @@ -315,8 +315,8 @@ namespace xfirelib { } else { - entry->statusmsg = status->msgs->at(i).c_str(); - setBuddyStatusMsg(entry,entry->statusmsg); //auf eine funktion reduziert, verringert cpuauslastung und beseitigt das + entry->statusmsg = status->msgs->at(i); + setBuddyStatusMsg(entry); //auf eine funktion reduziert, verringert cpuauslastung und beseitigt das //das problem der fehlenden statusmsg } } |