diff options
author | Not Zed <NotZed@Ximian.com> | 2002-02-26 10:27:22 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-02-26 10:27:22 +0800 |
commit | 1b00ce5ca9b8a7c3a0cf0d96579aa04aad5e0820 (patch) | |
tree | 774eb5e2210876050674433cdaa18aad875060d4 /filter/filter-part.h | |
parent | 43a998d8cba35528f094d206b23084e114353e12 (diff) | |
download | gsoc2013-evolution-1b00ce5ca9b8a7c3a0cf0d96579aa04aad5e0820.tar.gz gsoc2013-evolution-1b00ce5ca9b8a7c3a0cf0d96579aa04aad5e0820.tar.zst gsoc2013-evolution-1b00ce5ca9b8a7c3a0cf0d96579aa04aad5e0820.zip |
Copy values across to new part.
2002-02-26 Not Zed <NotZed@Ximian.com>
* filter-filter.c (option_activate): Copy values across to new
part.
* filter-rule.c (option_activate): copy values across to new part,
if they are compatible.
* filter-element.c (filter_element_copy_value): New function to
copy values (where they can be) from one filter element to another.
* filter-part.c (filter_part_copy_values): New function to copy
values of a filter part. #1359.
svn path=/trunk/; revision=15841
Diffstat (limited to 'filter/filter-part.h')
-rw-r--r-- | filter/filter-part.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/filter/filter-part.h b/filter/filter-part.h index 1a29cee981..904be6b191 100644 --- a/filter/filter-part.h +++ b/filter/filter-part.h @@ -61,6 +61,7 @@ xmlNodePtr filter_part_xml_encode (FilterPart *fe); int filter_part_xml_decode (FilterPart *fe, xmlNodePtr node); FilterPart *filter_part_clone (FilterPart *fp); +void filter_part_copy_values (FilterPart *dfp, FilterPart *sfp); FilterElement *filter_part_find_element(FilterPart *ff, const char *name); |