| 706 GtkWidget *vbox; |
706 GtkWidget *vbox; |
| 707 ret = gtk_vbox_new(FALSE, 18); |
707 ret = gtk_vbox_new(FALSE, 18); |
| 708 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); |
708 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); |
| 709 |
709 |
| 710 vbox = make_frame (ret, _("Message Logs")); |
710 vbox = make_frame (ret, _("Message Logs")); |
| 711 gaim_button(_("_Log all conversations"), &logging_options_new, OPT_LOG_ALL, vbox); |
711 gaim_button(_("_Log all Instant Messages"), &logging_options_new, OPT_LOG_CONVOS, vbox); |
| |
712 gaim_button(_("Log all c_hats"), &logging_options_new, OPT_LOG_CHATS, vbox); |
| 712 gaim_button(_("Strip _HTML from logs"), &logging_options_new, OPT_LOG_STRIP_HTML, vbox); |
713 gaim_button(_("Strip _HTML from logs"), &logging_options_new, OPT_LOG_STRIP_HTML, vbox); |
| 713 |
714 |
| 714 vbox = make_frame (ret, _("System Logs")); |
715 vbox = make_frame (ret, _("System Logs")); |
| 715 gaim_button(_("Log when buddies _sign on/sign off"), &logging_options_new, OPT_LOG_BUDDY_SIGNON, |
716 gaim_button(_("Log when buddies _sign on/sign off"), &logging_options_new, OPT_LOG_BUDDY_SIGNON, |
| 716 vbox); |
717 vbox); |
| 1613 static void set_logging_options() |
1614 static void set_logging_options() |
| 1614 { |
1615 { |
| 1615 int option = logging_options ^ logging_options_new; |
1616 int option = logging_options ^ logging_options_new; |
| 1616 logging_options = logging_options_new; |
1617 logging_options = logging_options_new; |
| 1617 |
1618 |
| 1618 if (option & OPT_LOG_ALL) |
1619 if (option & OPT_LOG_CONVOS || option & OPT_LOG_CHATS) |
| 1619 update_log_convs(); |
1620 update_log_convs(); |
| 1620 |
1621 |
| 1621 } |
1622 } |
| 1622 |
1623 |
| 1623 static void set_blist_options() |
1624 static void set_blist_options() |