diff src/multi.c @ 1074:2cff18c2f9c6

[gaim-migrate @ 1084] this was stupidity waiting to happen. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 07 Nov 2000 09:27:32 +0000
parents e1408fb04c36
children 2fe18b2d6105
line wrap: on
line diff
--- a/src/multi.c	Mon Nov 06 22:42:25 2000 +0000
+++ b/src/multi.c	Tue Nov 07 09:27:32 2000 +0000
@@ -156,7 +156,7 @@
 	while (u) {
 		a = (struct aim_user *)u->data;
 		titles[0] = a->username;
-		titles[1] = find_gaim_conn_by_name(a->username) ? "Yes" : "No";
+		titles[1] = a->gc ? "Yes" : "No";
 		titles[2] = (a->options & OPT_USR_AUTO) ? "True" : "False";
 		titles[3] = proto_name(a->protocol);
 		i = gtk_clist_append(GTK_CLIST(list), titles);
@@ -240,7 +240,7 @@
 		u->protocol = tmpusr.protocol;
 		gtk_widget_destroy(newmod);
 		titles[0] = u->username;
-		titles[1] = find_gaim_conn_by_name(u->username) ? "Yes" : "No";
+		titles[1] = u->gc ? "Yes" : "No";
 		titles[2] = (u->options & OPT_USR_AUTO) ? "True" : "False";
 		titles[3] = proto_name(u->protocol);
 		i = gtk_clist_append(GTK_CLIST(list), titles);