comparison src/themes.c @ 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 8a932c488afc
children 3ba910921aa0
comparison
equal deleted inserted replaced
4337:368b75c4092f 4338:6c1230d15958
182 while (cnv) { 182 while (cnv) {
183 struct conversation *c = cnv->data; 183 struct conversation *c = cnv->data;
184 smiley_themeize(c->text); 184 smiley_themeize(c->text);
185 cnv=cnv->next; 185 cnv=cnv->next;
186 } 186 }
187
188 cnv = chats;
189 while (cnv) {
190 struct conversation *c = cnv->data;
191 smiley_themeize(c->text);
192 cnv=cnv->next;
193 }
194
187 } 195 }
188 196
189 g_free(dirname); 197 g_free(dirname);
190 return old ? NULL : theme; 198 return old ? NULL : theme;
191 } 199 }