From: Eric W. <war...@us...> - 2001-10-27 02:49:04
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv20711/src Modified Files: multi.c Log Message: forgot about this part. Index: multi.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/multi.c,v retrieving revision 1.99 retrieving revision 1.100 diff -u -d -r1.99 -r1.100 --- multi.c 2001/10/27 02:38:07 1.99 +++ multi.c 2001/10/27 02:49:01 1.100 @@ -247,6 +247,8 @@ a->options = u->options; a->protocol = u->protocol; + txt = gtk_entry_get_text(GTK_ENTRY(u->name)); + g_snprintf(a->username, sizeof(a->username), "%s", txt); txt = gtk_entry_get_text(GTK_ENTRY(u->pass)); if (a->options & OPT_USR_REM_PASS) g_snprintf(a->password, sizeof(a->password), "%s", txt); @@ -254,6 +256,7 @@ a->password[0] = '\0'; i = gtk_clist_find_row_from_data(GTK_CLIST(list), a); + gtk_clist_set_text(GTK_CLIST(list), i, 0, a->username); gtk_clist_set_text(GTK_CLIST(list), i, 2, (a->options & OPT_USR_AUTO) ? "True" : "False"); gtk_clist_set_text(GTK_CLIST(list), i, 3, proto_name(a->protocol)); |