Fixed endless loop at startup of RetroShare, with a wrong definition of a smiley string in emotes.acs.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3498 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-09-15 14:32:09 +00:00
parent 00ef48b45d
commit 8348e2a556
3 changed files with 8 additions and 2 deletions

View file

@ -91,7 +91,6 @@ void Emoticons::load()
{
smcode += sm_codes[i];
i++;
}
i++;
@ -107,6 +106,10 @@ void Emoticons::load()
}
i++;
if(!smcode.isEmpty() && !smfile.isEmpty()) {
while (smcode.right(1) == "|") {
smcode.remove(smcode.length() - 1, 1);
}
if (internalEmoticons) {
Smileys.insert(smcode, ":/"+smfile);
} else {