# HG changeset patch # User Christian Hammond # Date 1043125973 0 # Node ID 90eaa3486949cf4cffaaa71f3545dd89900d0c27 # Parent 2628346f53bd7221796e95e005659a8392c388dd [gaim-migrate @ 4641] Fixed the problem where changing themes would crash gaim. committer: Tailor Script diff -r 2628346f53bd -r 90eaa3486949 src/themes.c --- a/src/themes.c Tue Jan 21 01:12:42 2003 +0000 +++ b/src/themes.c Tue Jan 21 05:12:53 2003 +0000 @@ -181,7 +181,7 @@ if (load) { GList *cnv; - for (cnv = conversations; cnv != NULL; cnv = cnv->next) { + for (cnv = gaim_get_conversations(); cnv != NULL; cnv = cnv->next) { struct gaim_conversation *conv = cnv->data; if (gaim_conversation_get_ops(conv) == @@ -229,7 +229,4 @@ } g_free(probedirs[l]); } - - - }