aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-composer-utils.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-15 20:24:47 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-15 20:26:18 +0800
commit9311500db857b2427322733ef4b20cedca00ad9e (patch)
tree1c2c7835cf238f560bf3df9007927178c37da256 /mail/em-composer-utils.c
parentf642e03d4967c80aaad45475475752264c95de5c (diff)
downloadgsoc2013-evolution-9311500db857b2427322733ef4b20cedca00ad9e.tar
gsoc2013-evolution-9311500db857b2427322733ef4b20cedca00ad9e.tar.gz
gsoc2013-evolution-9311500db857b2427322733ef4b20cedca00ad9e.tar.bz2
gsoc2013-evolution-9311500db857b2427322733ef4b20cedca00ad9e.tar.lz
gsoc2013-evolution-9311500db857b2427322733ef4b20cedca00ad9e.tar.xz
gsoc2013-evolution-9311500db857b2427322733ef4b20cedca00ad9e.tar.zst
gsoc2013-evolution-9311500db857b2427322733ef4b20cedca00ad9e.zip
Avoid em_utils_uids_free() in other places.
Diffstat (limited to 'mail/em-composer-utils.c')
-rw-r--r--mail/em-composer-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c
index b89b995f23..a3ffc853ff 100644
--- a/mail/em-composer-utils.c
+++ b/mail/em-composer-utils.c
@@ -110,7 +110,7 @@ forward_data_free (ForwardData *data)
g_object_unref (data->folder);
if (data->uids != NULL)
- em_utils_uids_free (data->uids);
+ g_ptr_array_unref (data->uids);
g_slice_free (ForwardData, data);
}
@@ -1597,7 +1597,7 @@ setup_forward_attached_callbacks (EMsgComposer *composer,
data = g_slice_new0 (ForwardData);
data->folder = g_object_ref (folder);
- data->uids = em_utils_uids_copy (uids);
+ data->uids = g_ptr_array_ref (uids);
g_signal_connect (
composer, "send",