diff src/protocols/oscar/oscar.c @ 7067:71e0da45abe6

[gaim-migrate @ 7631] Core/UI split show_set_info(). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 30 Sep 2003 08:08:34 +0000
parents 7fdac700deb1
children fc9c74cfb306
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Tue Sep 30 07:57:03 2003 +0000
+++ b/src/protocols/oscar/oscar.c	Tue Sep 30 08:08:34 2003 +0000
@@ -6267,6 +6267,11 @@
 }
 #endif
 
+static void oscar_show_set_info(GaimConnection *gc)
+{
+	gaim_account_request_change_user_info(gaim_connection_get_account(gc));
+}
+
 static void oscar_change_pass(GaimConnection *gc)
 {
 	gaim_account_request_change_password(gaim_connection_get_account(gc));
@@ -6326,7 +6331,7 @@
 
 	pam = g_new0(struct proto_actions_menu, 1);
 	pam->label = _("Set User Info");
-	pam->callback = show_set_info;
+	pam->callback = oscar_show_set_info;
 	pam->gc = gc;
 	m = g_list_append(m, pam);