commit 8a9a19abf32566ef53af9d66d26d0c1bcf6d3ae1
parent 8903559ecddd5a5dc12c02fbf0195ad006d8c4b9
Author: Ricardo Mones <mones@claws-mail.org>
Date: Wed, 24 Nov 2010 22:15:56 +0000
2010-11-24 [mones] 3.7.7cvs5
* src/mainwindow.c
Add missing shortcuts for marking as spam and ham
Fixes Debian bug #599547
Diffstat:
4 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,9 @@
+2010-11-24 [mones] 3.7.7cvs5
+
+ * src/mainwindow.c
+ Add missing shortcuts for marking as spam and ham
+ Fixes Debian bug #599547
+
2010-11-22 [colin] 3.7.7cvs4
* src/compose.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4066,3 +4066,4 @@
( cvs diff -u -r 1.115.2.231 -r 1.115.2.232 src/main.c; ) > 3.7.7cvs2.patchset
( cvs diff -u -r 1.1.2.5 -r 1.1.2.6 src/plugins/pgpcore/claws.def; ) > 3.7.7cvs3.patchset
( cvs diff -u -r 1.382.2.560 -r 1.382.2.561 src/compose.c; ) > 3.7.7cvs4.patchset
+( cvs diff -u -r 1.274.2.318 -r 1.274.2.319 src/mainwindow.c; ) > 3.7.7cvs5.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=7
MICRO_VERSION=7
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=4
+EXTRA_VERSION=5
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/mainwindow.c b/src/mainwindow.c
@@ -643,8 +643,8 @@ static GtkActionEntry mainwin_entries[] =
{"Message/Mark/UnwatchThread", NULL, N_("Unwatch thread"), NULL, NULL, G_CALLBACK(unwatch_thread_cb) },
/* separation */
- {"Message/Mark/MarkSpam", NULL, N_("Mark as spam"), NULL, NULL, G_CALLBACK(mark_as_spam_cb) },
- {"Message/Mark/MarkHam", NULL, N_("Mark as ham"), NULL, NULL, G_CALLBACK(mark_as_ham_cb) },
+ {"Message/Mark/MarkSpam", NULL, N_("Mark as _spam"), NULL, NULL, G_CALLBACK(mark_as_spam_cb) },
+ {"Message/Mark/MarkHam", NULL, N_("Mark as _ham"), NULL, NULL, G_CALLBACK(mark_as_ham_cb) },
/* separation */
{"Message/Mark/Lock", NULL, N_("Lock"), NULL, NULL, G_CALLBACK(lock_msgs_cb) },