commit 8b97019bf32c3dea0ad19e751cadf4ea46abb9be
parent 980b322a50d24f1c08d6e0bd38a41ffbfe434fbb
Author: Tristan Chabredier <wwp@claws-mail.org>
Date: Fri, 12 Aug 2011 08:41:56 +0000
2011-08-12 [wwp] 3.7.9cvs44
* src/gtk/quicksearch.c
Fix duplicate key accel (thanks to Ra-Mones-Mones II).
Diffstat:
4 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-12 [wwp] 3.7.9cvs44
+
+ * src/gtk/quicksearch.c
+ Fix duplicate key accel (thanks to Ra-Mones-Mones II).
+
2011-08-09 [paul] 3.7.9cvs43
* src/mimeview.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4195,3 +4195,4 @@
( cvs diff -u -r 1.5.2.30 -r 1.5.2.31 src/gtk/description_window.c; ) > 3.7.9cvs41.patchset
( cvs diff -u -r 1.382.2.577 -r 1.382.2.578 src/compose.c; ) > 3.7.9cvs42.patchset
( cvs diff -u -r 1.83.2.168 -r 1.83.2.169 src/mimeview.c; ) > 3.7.9cvs43.patchset
+( cvs diff -u -r 1.1.2.102 -r 1.1.2.103 src/gtk/quicksearch.c; ) > 3.7.9cvs44.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=7
MICRO_VERSION=9
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=43
+EXTRA_VERSION=44
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/gtk/quicksearch.c b/src/gtk/quicksearch.c
@@ -861,7 +861,7 @@ QuickSearch *quicksearch_new()
quicksearch_set_button(GTK_BUTTON(quicksearch->search_description), GTK_STOCK_INFO, _("_Information"));
quicksearch_set_button(GTK_BUTTON(quicksearch->search_condition_expression), GTK_STOCK_EDIT, _("_Edit"));
- quicksearch_set_button(GTK_BUTTON(quicksearch->clear_search), GTK_STOCK_CLEAR, _("_Clear"));
+ quicksearch_set_button(GTK_BUTTON(quicksearch->clear_search), GTK_STOCK_CLEAR, _("C_lear"));
update_extended_buttons(quicksearch);
@@ -876,7 +876,7 @@ void quicksearch_relayout(QuickSearch *quicksearch)
case WIDE_MSGLIST_LAYOUT:
quicksearch_set_button(GTK_BUTTON(quicksearch->search_description), GTK_STOCK_INFO, _("_Information"));
quicksearch_set_button(GTK_BUTTON(quicksearch->search_condition_expression), GTK_STOCK_EDIT, _("_Edit"));
- quicksearch_set_button(GTK_BUTTON(quicksearch->clear_search), GTK_STOCK_CLEAR, _("_Clear"));
+ quicksearch_set_button(GTK_BUTTON(quicksearch->clear_search), GTK_STOCK_CLEAR, _("C_lear"));
break;
case SMALL_LAYOUT:
case VERTICAL_LAYOUT: