Mercurial > pidgin
diff src/protocols/msn/msn.c @ 5498:cce2d7868c78
[gaim-migrate @ 5894]
Bye bye do_ask_dialog()! Mwahahahahhaha!
And wit -> with. What wit with the witty with wit comment, wit you jutht
thaw.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Fri, 23 May 2003 02:42:52 +0000 |
| parents | b7c0be69c749 |
| children | 870207a49f2f |
line wrap: on
line diff
--- a/src/protocols/msn/msn.c Fri May 23 01:45:17 2003 +0000 +++ b/src/protocols/msn/msn.c Fri May 23 02:42:52 2003 +0000 @@ -43,9 +43,8 @@ } MsnMobileData; static void -msn_act_id(const char *entry, void *data) +msn_act_id(struct gaim_connection *gc, const char *entry) { - struct gaim_connection *gc = data; MsnSession *session = gc->proto_data; char outparams[MSN_BUF_LEN]; char *alias; @@ -94,37 +93,37 @@ } static void -msn_set_home_phone_cb(const char *entry, struct gaim_connection *gc) +msn_set_home_phone_cb(struct gaim_connection *gc, const char *entry) { msn_set_prp(gc, "PHH", entry); } static void -msn_set_work_phone_cb(const char *entry, struct gaim_connection *gc) +msn_set_work_phone_cb(struct gaim_connection *gc, const char *entry) { msn_set_prp(gc, "PHW", entry); } static void -msn_set_mobile_phone_cb(const char *entry, struct gaim_connection *gc) +msn_set_mobile_phone_cb(struct gaim_connection *gc, const char *entry) { msn_set_prp(gc, "PHM", entry); } static void -__enable_msn_pages_cb(int id, struct gaim_connection *gc) +__enable_msn_pages_cb(struct gaim_connection *gc) { msn_set_prp(gc, "MOB", "Y"); } static void -__disable_msn_pages_cb(int id, struct gaim_connection *gc) +__disable_msn_pages_cb(struct gaim_connection *gc) { msn_set_prp(gc, "MOB", "N"); } static void -__send_to_mobile_cb(const char *entry, MsnMobileData *data) +__send_to_mobile_cb(MsnMobileData *data, const char *entry) { MsnSession *session = data->gc->proto_data; MsnServConn *servconn = session->notification_conn; @@ -154,7 +153,7 @@ } static void -__close_mobile_page_cb(const char *entry, MsnMobileData *data) +__close_mobile_page_cb(MsnMobileData *data, const char *entry) { g_free(data); } @@ -205,22 +204,6 @@ _("Cancel"), NULL, gc); } -#if 0 -static void -msn_show_set_mobile_support(struct gaim_connection *gc) -{ - MsnSession *session = gc->proto_data; - - do_ask_dialog(_("MSN Mobile Support"), - _("Do you want to enable or disable MSN Mobile " - "device support?"), - gc, - _("Enable"), __enable_msn_mobile_cb, - _("Disable"), __disable_msn_mobile_cb, - session->prpl->handle, FALSE); -} -#endif - static void msn_show_set_mobile_pages(struct gaim_connection *gc) { @@ -228,9 +211,10 @@ _("Do you want to allow or disallow people on " "your buddy list to send you MSN Mobile pages " "to your cell phone or other mobile device?"), - -1, gc, 2, + -1, gc, 3, _("Allow"), G_CALLBACK(__enable_msn_pages_cb), - _("Disallow"), G_CALLBACK(__disable_msn_pages_cb)); + _("Disallow"), G_CALLBACK(__disable_msn_pages_cb), + _("Cancel"), NULL); } static void
