aboutsummaryrefslogtreecommitdiffstats
path: root/filter/e-filter-option.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-21 22:02:58 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:17 +0800
commit5146ff4c535f443fe25290eb96631e91ad44c8ef (patch)
treeb8cc31419c1f297092e13eedd9a5877f4c106eda /filter/e-filter-option.c
parentea8a59a443f861af88ddb21d5dcbde1c95006203 (diff)
downloadgsoc2013-evolution-5146ff4c535f443fe25290eb96631e91ad44c8ef.tar
gsoc2013-evolution-5146ff4c535f443fe25290eb96631e91ad44c8ef.tar.gz
gsoc2013-evolution-5146ff4c535f443fe25290eb96631e91ad44c8ef.tar.bz2
gsoc2013-evolution-5146ff4c535f443fe25290eb96631e91ad44c8ef.tar.lz
gsoc2013-evolution-5146ff4c535f443fe25290eb96631e91ad44c8ef.tar.xz
gsoc2013-evolution-5146ff4c535f443fe25290eb96631e91ad44c8ef.tar.zst
gsoc2013-evolution-5146ff4c535f443fe25290eb96631e91ad44c8ef.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'filter/e-filter-option.c')
-rw-r--r--filter/e-filter-option.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/filter/e-filter-option.c b/filter/e-filter-option.c
index 25a979794b..0cea021666 100644
--- a/filter/e-filter-option.c
+++ b/filter/e-filter-option.c
@@ -206,13 +206,20 @@ filter_option_xml_create (EFilterElement *element,
option->dynamic_func = g_strdup ((const gchar *) fn);
- /* get options now, to have them available when reading saved rules */
+ /* Get options now, to have them
+ * available when reading saved
+ * rules. */
items = filter_option_get_dynamic_options (option);
for (i = items; i; i = i->next) {
op = i->data;
if (op) {
- e_filter_option_add (option, op->value, op->title, op->code, TRUE);
+ e_filter_option_add (
+ option,
+ op->value,
+ op->title,
+ op->code,
+ TRUE);
free_option (op);
}
}