changeset 4375:90eaa3486949

[gaim-migrate @ 4641] Fixed the problem where changing themes would crash gaim. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 21 Jan 2003 05:12:53 +0000
parents 2628346f53bd
children 2c985a9e994c
files src/themes.c
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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]);
 	}
-	
- 
-       
 }