2009-05-11 [colin] 3.7.1cvs54
authorColin Leroy <colin@colino.net>
Mon, 11 May 2009 07:00:54 +0000 (07:00 +0000)
committerColin Leroy <colin@colino.net>
Mon, 11 May 2009 07:00:54 +0000 (07:00 +0000)
* src/compose.c
Fix bug 1872, 'A: Cc: CCi: selector should
default on same as preceding contact'

ChangeLog
PATCHSETS
configure.ac
src/compose.c

index d68f4723ffcb62a9d7b8efc760ff25d8c9c6176f..15b4e3576616d42f1a0c6dd093ca5b9eb605d92b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-11 [colin]     3.7.1cvs54
+
+       * src/compose.c
+               Fix bug 1872, 'A: Cc: CCi: selector should 
+               default on same as preceding contact'
+
 2009-05-10 [holger]    3.7.1cvs53
 
        * src/addr_compl.c
index 4d84b8737e879236b60e514fba8917de2649adde..f392368fe9f42a3cbab0a050f8b13e001b7e1a1a 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.36.2.170 -r 1.36.2.171 src/common/utils.c;  ) > 3.7.1cvs51.patchset
 ( cvs diff -u -r 1.213.2.193 -r 1.213.2.194 src/folder.c;  cvs diff -u -r 1.83.2.154 -r 1.83.2.155 src/mimeview.c;  ) > 3.7.1cvs52.patchset
 ( cvs diff -u -r 1.27.2.45 -r 1.27.2.46 src/addr_compl.c;  cvs diff -u -r 1.8.2.12 -r 1.8.2.13 src/addr_compl.h;  ) > 3.7.1cvs53.patchset
+( cvs diff -u -r 1.382.2.507 -r 1.382.2.508 src/compose.c;  ) > 3.7.1cvs54.patchset
index bd9f222846a5a895e51dc1ba568d5c06d47f95d4..2d9295d37d7cda084d2193ea04ce1153a275bbcb 100644 (file)
@@ -12,7 +12,7 @@ MINOR_VERSION=7
 MICRO_VERSION=1
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=53
+EXTRA_VERSION=54
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 7dbc4b6060d09d6b889d1514e90edc4e11c31861..16ecafc06bce8ad097fe533b90d1de26b70b81d3 100644 (file)
@@ -6341,7 +6341,7 @@ static void compose_create_header_entry(Compose *compose)
                                GTK_ENTRY(gtk_bin_get_child(GTK_BIN((compose->header_last->combo)))));
                string = headers;
                while (*string != NULL) {
-                       if (!strcmp(*string, last_header_entry))
+                       if (!strcmp(prefs_common_translated_header_name(*string), last_header_entry))
                                standard_header = TRUE;
                        string++;
                }