From 5683148866629891ffb7ace22f7caef19601221d Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Sun, 10 Apr 2005 15:49:15 +0000 Subject: [PATCH] 2005-04-10 [colin] 1.9.6cvs32 * src/filtering.c Copy score when copying FilteringActions Fix bug #674 --- ChangeLog-gtk2.claws | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/filtering.c | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index 663425360..f02f172ae 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,9 @@ +2005-04-10 [colin] 1.9.6cvs32 + + * src/filtering.c + Copy score when copying FilteringActions + Fix bug #674 + 2005-04-10 [colin] 1.9.6cvs31 * src/inc.c diff --git a/PATCHSETS b/PATCHSETS index 6f3f55516..f5bf1bd33 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -448,3 +448,4 @@ ( cvs diff -u -r 1.61.2.22 -r 1.61.2.23 src/account.c; cvs diff -u -r 1.105.2.19 -r 1.105.2.20 src/prefs_account.c; cvs diff -u -r 1.49.2.9 -r 1.49.2.10 src/prefs_account.h; ) > 1.9.6cvs29.patchset ( cvs diff -u -r 1.105.2.20 -r 1.105.2.21 src/prefs_account.c; cvs diff -u -r 1.382.2.116 -r 1.382.2.117 src/compose.c; ) > 1.9.6cvs30.patchset ( cvs diff -u -r 1.149.2.21 -r 1.149.2.22 src/inc.c; ) > 1.9.6cvs31.patchset +( cvs diff -u -r 1.60.2.5 -r 1.60.2.6 src/filtering.c; ) > 1.9.6cvs32.patchset diff --git a/configure.ac b/configure.ac index 6e10ba39b..989e56a9f 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=31 +EXTRA_VERSION=32 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/filtering.c b/src/filtering.c index 2e988e7cd..a6ff6661e 100644 --- a/src/filtering.c +++ b/src/filtering.c @@ -108,6 +108,7 @@ static FilteringAction * filteringaction_copy(FilteringAction * src) else new->destination = NULL; new->labelcolor = src->labelcolor; + new->score = src->score; return new; } -- 2.25.1