diff options
author | Not Zed <NotZed@Ximian.com> | 2001-03-27 07:13:30 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-03-27 07:13:30 +0800 |
commit | b486701fbef6d5cc2a42787a839460e7845c843f (patch) | |
tree | 7e1de25291e43f5b896c830933464d259877a508 | |
parent | 1d80d46ed53ac4fd6b292c972529b7c6d3bd0597 (diff) | |
download | gsoc2013-evolution-b486701fbef6d5cc2a42787a839460e7845c843f.tar gsoc2013-evolution-b486701fbef6d5cc2a42787a839460e7845c843f.tar.gz gsoc2013-evolution-b486701fbef6d5cc2a42787a839460e7845c843f.tar.bz2 gsoc2013-evolution-b486701fbef6d5cc2a42787a839460e7845c843f.tar.lz gsoc2013-evolution-b486701fbef6d5cc2a42787a839460e7845c843f.tar.xz gsoc2013-evolution-b486701fbef6d5cc2a42787a839460e7845c843f.tar.zst gsoc2013-evolution-b486701fbef6d5cc2a42787a839460e7845c843f.zip |
Fixed vfolder_new api.
2001-03-20 Not Zed <NotZed@Ximian.com>
* mail-local.c (init_trash): Fixed vfolder_new api.
svn path=/trunk/; revision=8958
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/mail-local.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index f2ba5e62ff..de682afe21 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2001-03-20 Not Zed <NotZed@Ximian.com> + + * mail-local.c (init_trash): Fixed vfolder_new api. + 2001-03-26 Dan Winship <danw@ximian.com> * mail-format.c (get_cid): Make fake content-id URLs be guaranteed diff --git a/mail/mail-local.c b/mail/mail-local.c index 574cb981c8..19ed527999 100644 --- a/mail/mail-local.c +++ b/mail/mail-local.c @@ -364,8 +364,7 @@ init_trash (CamelStore *store) name = g_strdup_printf ("%s?(match-all (system-flag \"Deleted\"))", "vTrash"); - store->vtrash = camel_vee_folder_new (store, name, CAMEL_STORE_FOLDER_CREATE | - CAMEL_STORE_VEE_FOLDER_AUTO, NULL); + store->vtrash = camel_vee_folder_new (store, name, CAMEL_STORE_FOLDER_CREATE|CAMEL_STORE_VEE_FOLDER_AUTO); g_free (name); |