From: Paul Mangan Date: Sun, 27 Feb 2005 16:23:15 +0000 (+0000) Subject: 2005-02-27 [paul] 1.0.1cvs20 X-Git-Tag: rel_1_0_3~3 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=6fddfe6b58e646c4d8135a8d05f3fd3d3d99cf9c 2005-02-27 [paul] 1.0.1cvs20 * src/messageview.c fix crash-causing typo. spotted by Ralgh Young --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 7965006f6..44232c379 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2005-02-27 [paul] 1.0.1cvs20 + + * src/messageview.c + fix crash-causing typo. spotted by + Ralgh Young + 2005-02-25 [paul] 1.0.1cvs19 * src/prefs_account.c diff --git a/PATCHSETS b/PATCHSETS index daec3f690..5350e3641 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -257,3 +257,4 @@ ( cvs diff -u -r 1.478 -r 1.479 src/compose.c; ) > 1.0.1cvs17.patchset ( cvs diff -u -r 1.134 -r 1.135 src/messageview.c; ) > 1.0.1cvs18.patchset ( cvs diff -u -r 1.123 -r 1.124 src/prefs_account.c; cvs diff -u -r 1.63 -r 1.64 src/prefs_folder_item.c; cvs diff -u -r 1.20 -r 1.21 src/gtk/prefswindow.c; cvs diff -u -r 1.9 -r 1.10 src/gtk/prefswindow.h; ) > 1.0.1cvs19.patchset +( cvs diff -u -r 1.135 -r 1.136 src/messageview.c; ) > 1.0.1cvs20.patchset diff --git a/configure.ac b/configure.ac index 83f3a2741..597fdfbf9 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=0 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=19 +EXTRA_VERSION=20 EXTRA_RELEASE= if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then diff --git a/src/messageview.c b/src/messageview.c index 28d0c8351..611fd3955 100644 --- a/src/messageview.c +++ b/src/messageview.c @@ -302,7 +302,7 @@ static GtkItemFactoryEntry msgview_entries[] = NULL, create_filter_cb, FILTER_BY_TO, NULL}, {N_("/_Tools/_Create filter rule/by _Subject"), NULL, create_filter_cb, FILTER_BY_SUBJECT, NULL}, - {N_("/_Tools/Create processing rule/"), + {N_("/_Tools/Create processing rule"), NULL, NULL, 0, ""}, {N_("/_Tools/Create processing rule/_Automatically"), NULL, create_processing_cb, FILTER_BY_AUTO, NULL},