comparison src/multi.c @ 1710:f42ce672c560

[gaim-migrate @ 1720] various fixes (for plugins especially), other updates. made WEBSITE macro so it's easy to change (not that i think it'll be changing again), updated some files to reflect that change. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 13 Apr 2001 10:50:33 +0000
parents eeb0cfe710b1
children 896432d66303
comparison
equal deleted inserted replaced
1709:11d0deb44a36 1710:f42ce672c560
203 } 203 }
204 204
205 static void free_muo(GtkWidget *b, struct mod_usr_opt *m) 205 static void free_muo(GtkWidget *b, struct mod_usr_opt *m)
206 { 206 {
207 g_free(m); 207 g_free(m);
208 }
209
210 void get_good(struct gaim_connection **gc)
211 {
212 GSList *c = connections; *gc = NULL;
213 while (c) {
214 if (((struct gaim_connection *)c->data)->protocol < 2) {
215 *gc = c->data; return;
216 }
217 c = c->next;
218 }
208 } 219 }
209 220
210 static GtkWidget *acct_button(const char *text, struct aim_user *u, int option, GtkWidget *box) 221 static GtkWidget *acct_button(const char *text, struct aim_user *u, int option, GtkWidget *box)
211 { 222 {
212 GtkWidget *button; 223 GtkWidget *button;