diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-15 12:38:31 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-15 12:38:31 +0800 |
commit | 73258ef76ff8c4a53a128bb1b219841d3431b818 (patch) | |
tree | ebdb065b41004607f3cff6bd7a823a03afc93117 /plugins/exchange-operations | |
parent | 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (diff) | |
download | gsoc2013-evolution-73258ef76ff8c4a53a128bb1b219841d3431b818.tar.gz gsoc2013-evolution-73258ef76ff8c4a53a128bb1b219841d3431b818.tar.zst gsoc2013-evolution-73258ef76ff8c4a53a128bb1b219841d3431b818.zip |
Call camel_folder_info_new() instead of g_new0().
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
* mail/em-folder-tree.c (em_folder_tree_get_selected_folder_info):
* plugins/exchange-operations/exchange-folder.c (ex_create_folder_info):
Call camel_folder_info_new() instead of g_new0().
svn path=/trunk/; revision=34538
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-folder.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 9f4513eb46..e41100484f 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,8 @@ +2007-11-14 Matthew Barnes <mbarnes@redhat.com> + + * exchange-folder.c (ex_create_folder_info): + Call camel_folder_info_new() instead of g_new0(). + 2007-10-26 Kjartan Maraas <kmaraas@gnome.org> * exchange-account-setup.c: (org_gnome_exchange_settings), diff --git a/plugins/exchange-operations/exchange-folder.c b/plugins/exchange-operations/exchange-folder.c index db2dc0e475..879e4ded28 100644 --- a/plugins/exchange-operations/exchange-folder.c +++ b/plugins/exchange-operations/exchange-folder.c @@ -159,7 +159,7 @@ ex_create_folder_info (CamelStore *store, char *name, char *uri, if (!path) return NULL; - info = g_new0 (CamelFolderInfo, 1); + info = camel_folder_info_new (); info->name = name; info->uri = uri; info->full_name = g_strdup (path + 1); |