2005-04-17 [colin] 1.9.6cvs38

* src/folderview.c
                Fix duplicate hotkeys in Folderview's contextual
                menu
This commit is contained in:
Colin Leroy 2005-04-17 17:00:25 +00:00
parent ab3dca9e65
commit 2c61238fb9
4 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2005-04-17 [colin] 1.9.6cvs38
* src/folderview.c
Fix duplicate hotkeys in Folderview's contextual
menu
2005-04-15 [colin] 1.9.6cvs37
* src/summaryview.c

View file

@ -454,3 +454,4 @@
( cvs diff -u -r 1.105.2.22 -r 1.105.2.23 src/prefs_account.c; ) > 1.9.6cvs35.patchset
( cvs diff -u -r 1.1.2.15 -r 1.1.2.16 src/plugins/pgpmime/pgpmime.c; ) > 1.9.6cvs36.patchset
( cvs diff -u -r 1.395.2.66 -r 1.395.2.67 src/summaryview.c; ) > 1.9.6cvs37.patchset
( cvs diff -u -r 1.207.2.31 -r 1.207.2.32 src/folderview.c; ) > 1.9.6cvs38.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=9
MICRO_VERSION=6
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=37
EXTRA_VERSION=38
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -236,15 +236,15 @@ GHashTable *folderview_popups;
static GtkItemFactoryEntry folderview_common_popup_entries[] =
{
{N_("/Mark all _read"), NULL, mark_all_read_cb, 0, NULL},
{N_("/Mark all re_ad"), NULL, mark_all_read_cb, 0, NULL},
{N_("/_Search folder..."), NULL, folderview_search_cb, 0, NULL},
{N_("/_Properties..."), NULL, folderview_property_cb, 0, NULL},
{N_("/Pr_ocessing..."), NULL, folderview_processing_cb, 0, NULL},
{N_("/Process_ing..."), NULL, folderview_processing_cb, 0, NULL},
};
static GtkItemFactoryEntry folder_view_trash_popup_entries[] = {
{N_("/------"), NULL, NULL, 0, "<Separator>"},
{N_("/Empty trash..."), NULL, folderview_empty_trash_cb, 0, NULL},
{N_("/Empty _trash..."), NULL, folderview_empty_trash_cb, 0, NULL},
};