# HG changeset patch # User Christian Hammond # Date 1042878536 0 # Node ID 6c1230d15958048c8ae7344875b0380a50513265 # Parent 368b75c4092f1636f5187d3ffa30b479f212be2d [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 diff -r 368b75c4092f -r 6c1230d15958 src/themes.c --- 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);