Mercurial > pidgin
changeset 4338:6c1230d15958
[gaim-migrate @ 4602]
gtkimhtmls in chats weren't having their smiley theme data reloaded when
a new smiley theme was selected, and that was causing a lovely core dump.
This fixes that.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sat, 18 Jan 2003 08:28:56 +0000 |
parents | 368b75c4092f |
children | 78bc4c8e4b2e |
files | src/themes.c |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/themes.c Sat Jan 18 04:20:36 2003 +0000 +++ b/src/themes.c Sat Jan 18 08:28:56 2003 +0000 @@ -184,6 +184,14 @@ smiley_themeize(c->text); cnv=cnv->next; } + + cnv = chats; + while (cnv) { + struct conversation *c = cnv->data; + smiley_themeize(c->text); + cnv=cnv->next; + } + } g_free(dirname);