aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-03 08:39:35 +0800
committerDan Winship <danw@src.gnome.org>2000-07-03 08:39:35 +0800
commit033a1cd5a7336659319b697d319b8c912bf3771a (patch)
tree8307198b46fd0b8278805b7de4f5ca90de5fcc8a
parentf0e2807dbe1d424b549216e4e0b6e97b6b34deac (diff)
downloadgsoc2013-evolution-033a1cd5a7336659319b697d319b8c912bf3771a.tar
gsoc2013-evolution-033a1cd5a7336659319b697d319b8c912bf3771a.tar.gz
gsoc2013-evolution-033a1cd5a7336659319b697d319b8c912bf3771a.tar.bz2
gsoc2013-evolution-033a1cd5a7336659319b697d319b8c912bf3771a.tar.lz
gsoc2013-evolution-033a1cd5a7336659319b697d319b8c912bf3771a.tar.xz
gsoc2013-evolution-033a1cd5a7336659319b697d319b8c912bf3771a.tar.zst
gsoc2013-evolution-033a1cd5a7336659319b697d319b8c912bf3771a.zip
Fix filter_driver_new invocation.
* component-factory.c (create_vfolder_storage): Fix filter_driver_new invocation. svn path=/trunk/; revision=3862
-rw-r--r--mail/ChangeLog3
-rw-r--r--mail/component-factory.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 06792e2f38..243b6d9d3a 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,8 @@
2000-07-02 Dan Winship <danw@helixcode.com>
+ * component-factory.c (create_vfolder_storage): Fix
+ filter_driver_new invocation.
+
* Makefile.am (bin_PROGRAMS): test-mail and test-thread should be
noinst.
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 92e61e9096..2b2f33eda5 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -242,7 +242,7 @@ create_vfolder_storage (EvolutionShellComponent *shell_component)
user = g_strdup_printf ("%s/vfolders.xml", evolution_dir);
system = g_strdup_printf("%s/evolution/vfoldertypes.xml", EVOLUTION_DATADIR);
- fe = filter_driver_new(user, system, mail_uri_to_folder);
+ fe = filter_driver_new(system, user, mail_uri_to_folder);
g_free(user);
g_free(system);
count = filter_driver_rule_count(fe);