From: Rob F. <rob...@us...> - 2001-09-22 07:02:33
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar In directory usw-pr-cvs1:/tmp/cvs-serv16200/protocols/oscar Modified Files: oscar.c Log Message: well, it still needs some work, but I did promise that I'd commit it tonight. I need to make it check to make sure the file exists, and need to make it display the current buddy icon. I'll do this tomorrow and will commit it. If there's any errors, I'll grab them then. I've had a couple drinks tonight, so it's very possible that I did something dumb or extremely brilliant. ;-) Index: oscar.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/oscar.c,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- oscar.c 2001/09/21 00:57:13 1.36 +++ oscar.c 2001/09/22 07:02:30 1.37 @@ -2634,6 +2634,8 @@ if (!strcmp(act, "Set User Info")) { show_set_info(gc); + } else if (!strcmp(act, "Set Buddy Icon")) { + show_set_icon(gc); } else if (!strcmp(act, "Change Password")) { show_change_passwd(gc); } else if (!strcmp(act, "Confirm Account")) { @@ -2659,6 +2661,7 @@ GList *m = NULL; m = g_list_append(m, "Set User Info"); + m = g_list_append(m, "Set Buddy Icon"); m = g_list_append(m, NULL); m = g_list_append(m, "Change Password"); m = g_list_append(m, "Confirm Account"); |