From: Paul Mangan Date: Sat, 23 Mar 2002 10:42:53 +0000 (+0000) Subject: move 'Gather addresses to 'Tools' X-Git-Tag: rel_0_7_5~97 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=20c959ed74e89d4aaf569218b3bd1086e41e2bf1 move 'Gather addresses to 'Tools' --- diff --git a/src/mainwindow.c b/src/mainwindow.c index d0845acc5..78d9d4868 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -477,7 +477,6 @@ static GtkItemFactoryEntry mainwin_entries[] = {N_("/_File/_Import mbox file..."), NULL, import_mbox_cb, 0, NULL}, {N_("/_File/_Export to mbox file..."), NULL, export_mbox_cb, 0, NULL}, {N_("/_File/Empty _trash"), "D", empty_trash_cb, 0, NULL}, - {N_("/_File/_Gather addresses..."), NULL, addr_gather_cb, 0, NULL}, {N_("/_File/---"), NULL, NULL, 0, ""}, {N_("/_File/_Save as..."), "S", save_as_cb, 0, NULL}, {N_("/_File/_Print..."), NULL, print_cb, 0, NULL}, @@ -665,11 +664,12 @@ static GtkItemFactoryEntry mainwin_entries[] = {N_("/_Message/_Mark/Mark all _read"), NULL, mark_all_read_cb, 0, NULL}, {N_("/_Tools"), NULL, NULL, 0, ""}, - {N_("/_Tools/_Selective Download"), "S", sel_download_cb, 0, NULL}, + {N_("/_Tools/_Selective download"), "S", sel_download_cb, 0, NULL}, {N_("/_Tools/---"), NULL, NULL, 0, ""}, {N_("/_Tools/_Address book"), "A", addressbook_open_cb, 0, NULL}, {N_("/_Tools/Add sender to address boo_k"), NULL, add_address_cb, 0, NULL}, + {N_("/_Tools/_Gather addresses..."), NULL, addr_gather_cb, 0, NULL}, {N_("/_Tools/---"), NULL, NULL, 0, ""}, {N_("/_Tools/_Filter messages"), NULL, filter_cb, 0, NULL}, {N_("/_Tools/_Create filter rule"), NULL, NULL, 0, ""}, @@ -1553,7 +1553,6 @@ void main_window_set_menu_sensitive(MainWindow *mainwin) {"/File/Import mbox file..." , M_UNLOCKED}, {"/File/Export to mbox file...", M_UNLOCKED}, {"/File/Empty trash" , M_UNLOCKED}, - {"/File/Gather addresses...", M_SINGLE_TARGET_EXIST|M_UNLOCKED}, {"/File/Save as...", M_SINGLE_TARGET_EXIST|M_UNLOCKED}, {"/File/Print..." , M_TARGET_EXIST|M_UNLOCKED}, /* {"/File/Close", M_UNLOCKED}, */ @@ -1591,7 +1590,9 @@ void main_window_set_menu_sensitive(MainWindow *mainwin) {"/Message/Delete" , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED}, {"/Message/Mark" , M_TARGET_EXIST}, + {"/Tools/Selective download" , M_HAVE_ACCOUNT|M_UNLOCKED}, {"/Tools/Add sender to address book", M_SINGLE_TARGET_EXIST}, + {"/Tools/Gather addresses..." , M_SINGLE_TARGET_EXIST|M_UNLOCKED}, {"/Tools/Filter messages" , M_MSG_EXIST|M_EXEC|M_UNLOCKED}, {"/Tools/Create filter rule" , M_SINGLE_TARGET_EXIST|M_UNLOCKED}, {"/Tools/Execute" , M_MSG_EXIST|M_EXEC|M_UNLOCKED},