diff src/protocols/oscar/oscar.c @ 7063:7fdac700deb1

[gaim-migrate @ 7627] show_change_pass, or whatever it was called, is now core/UI split. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 30 Sep 2003 07:47:38 +0000
parents 9946001989a3
children 71e0da45abe6
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Tue Sep 30 06:43:17 2003 +0000
+++ b/src/protocols/oscar/oscar.c	Tue Sep 30 07:47:38 2003 +0000
@@ -6267,6 +6267,11 @@
 }
 #endif
 
+static void oscar_change_pass(GaimConnection *gc)
+{
+	gaim_account_request_change_password(gaim_connection_get_account(gc));
+}
+
 static void oscar_show_chpassurl(GaimConnection *gc)
 {
 	struct oscar_data *od = gc->proto_data;
@@ -6335,7 +6340,7 @@
 
 	pam = g_new0(struct proto_actions_menu, 1);
 	pam->label = _("Change Password");
-	pam->callback = show_change_passwd;
+	pam->callback = oscar_change_pass;
 	pam->gc = gc;
 	m = g_list_append(m, pam);