Mercurial > pidgin
changeset 4377:0ffdb9b6a5e9
[gaim-migrate @ 4643]
commit fix ok?
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Tue, 21 Jan 2003 05:40:14 +0000 |
parents | 2c985a9e994c |
children | 194507c83612 |
files | src/prefs.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/prefs.c Tue Jan 21 05:20:10 2003 +0000 +++ b/src/prefs.c Tue Jan 21 05:40:14 2003 +0000 @@ -696,7 +696,7 @@ gtk_container_set_border_width (GTK_CONTAINER (ret), 12); vbox = make_frame (ret, _("Proxy Type")); - gaim_dropdown(vbox, _("Proxy _type:"), &proxytype, -1, + gaim_dropdown(vbox, _("Proxy _type:"), (int*)&proxytype, -1, _("No proxy"), PROXY_NONE, "SOCKS 4", PROXY_SOCKS4, "SOCKS 5", PROXY_SOCKS5, @@ -2171,7 +2171,7 @@ *option = opt; } - if (option == &proxytype) { + if (option == (int*)&proxytype) { if (opt == PROXY_NONE) gtk_widget_set_sensitive(prefs_proxy_frame, FALSE); else