Mercurial > pidgin.yaz
diff src/buddy.c @ 423:0d4e80bdb96b
[gaim-migrate @ 433]
No more --enable-oscar option. From now on, it's a toggle in the preferences.
PLEASE DO NOT USE OSCAR, even though it's very easy to.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 21 Jun 2000 19:33:58 +0000 |
parents | d6f02d7f78d8 |
children | 0cd2ba801eb4 |
line wrap: on
line diff
--- a/src/buddy.c Mon Jun 19 21:58:32 2000 +0000 +++ b/src/buddy.c Wed Jun 21 19:33:58 2000 +0000 @@ -452,13 +452,13 @@ gtk_menu_append(GTK_MENU(menu), button); gtk_widget_show(button); -#ifdef USE_OSCAR /* FIXME : someday maybe TOC can do this too */ + if (USE_OSCAR) { button = gtk_menu_item_new_with_label(_("Away Msg")); gtk_signal_connect(GTK_OBJECT(button), "activate", GTK_SIGNAL_FUNC(pressed_away_msg), b); gtk_menu_append(GTK_MENU(menu), button); gtk_widget_show(button); -#endif + } button = gtk_menu_item_new_with_label(_("Toggle Logging")); gtk_signal_connect(GTK_OBJECT(button), "activate", @@ -1636,10 +1636,8 @@ /* We don't save this 'at home', it's on the server. * So, we gotta resend the config to the server. */ serv_save_config(); -#ifdef USE_OSCAR /* we do this here because we can :) */ serv_set_permit_deny(); -#endif }