From: Paul Mangan Date: Sun, 22 Aug 2004 08:39:28 +0000 (+0000) Subject: 2004-08-22 [paul] 0.9.12cvs76 X-Git-Tag: rel_0_9_12a~3 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=eb31e899ea0365b4614f8929939d43b14aac7298 2004-08-22 [paul] 0.9.12cvs76 * src/plugins/trayicon/trayicon.c fix formatting bug in trayicon_popup_menu_entries[] --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 989329133..fc345a57b 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2004-08-22 [paul] 0.9.12cvs76 + + * src/plugins/trayicon/trayicon.c + fix formatting bug in trayicon_popup_menu_entries[] + + 2004-08-22 [paul] 0.9.12cvs75 * m4/Makefile.am diff --git a/PATCHSETS b/PATCHSETS index 8541a1905..34d7b0588 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -58,3 +58,4 @@ ( cvs diff -u -r 1.53 -r 1.54 src/toolbar.c; ) > 0.9.12cvs73.patchset ( cvs diff -u -r 1.437 -r 1.438 src/compose.c; ) > 0.9.12cvs74.patchset ( cvs diff -u -r 1.1 -r 1.2 m4/Makefile.am; ) > 0.9.12cvs75.patchset +( cvs diff -u -r 1.15 -r 1.16 src/plugins/trayicon/trayicon.c; ) > 0.9.12cvs76.patchset diff --git a/configure.ac b/configure.ac index 6dd17e275..b85a140b9 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=12 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=75 +EXTRA_VERSION=76 EXTRA_RELEASE= if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then diff --git a/src/plugins/trayicon/trayicon.c b/src/plugins/trayicon/trayicon.c index 6392b60e9..cb6f9d236 100644 --- a/src/plugins/trayicon/trayicon.c +++ b/src/plugins/trayicon/trayicon.c @@ -76,7 +76,7 @@ static void trayicon_exit_cb ( gpointer data, guint action, GtkWidget *widge static GtkItemFactoryEntry trayicon_popup_menu_entries[] = { {N_("/_Get"), NULL, trayicon_get_cb, 0, NULL}, - {N_("/_Get _All"), NULL, trayicon_get_all_cb, 0, NULL}, + {N_("/Get _All"), NULL, trayicon_get_all_cb, 0, NULL}, {N_("/---"), NULL, NULL, 0, ""}, {N_("/_Email"), NULL, trayicon_compose_cb, 0, NULL}, {N_("/Open A_ddressbook"), NULL, trayicon_addressbook_cb, 0, NULL},