Mercurial > pidgin.yaz
changeset 1215:29b708cde8a7
[gaim-migrate @ 1225]
:p
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 08 Dec 2000 07:55:14 +0000 |
parents | 0baf39dc5437 |
children | 64d67198c458 |
files | src/conversation.c |
diffstat | 1 files changed, 2 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/conversation.c Fri Dec 08 07:46:22 2000 +0000 +++ b/src/conversation.c Fri Dec 08 07:55:14 2000 +0000 @@ -1102,17 +1102,12 @@ if (strlen(m) < 2) return face; *len = 2; - if ( !strncmp(m, ":)", 2) || - !strncmp(m, "=)", 2)) { + if ( !strncmp(m, ":)", 2)) { face = gdk_pixmap_create_from_xpm_d(window->window, &mask, trans, smile_xpm); - } else if (!strncmp(m, ":(", 2) || - !strncmp(m, "=(", 2)) { + } else if (!strncmp(m, ":(", 2)) { face = gdk_pixmap_create_from_xpm_d(window->window, &mask, trans, sad_xpm); } else if (!strncmp(m, ";)", 2)) { face = gdk_pixmap_create_from_xpm_d(window->window, &mask, trans, wink_xpm); - } else if (!strncmp(m, ":p", 2) || - !strncmp(m, ":P", 2)) { - face = gdk_pixmap_create_from_xpm_d(window->window, &mask, trans, tongue_xpm); } if (face || strlen(m) < 3) return face;