aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/face/face.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-09-28 04:20:56 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-09-28 04:20:56 +0800
commit7352689ab7e6cfa835d52035f76756879306cfa9 (patch)
treeece92aafcc46ee9be4a6dcde5273aaedca7517b4 /plugins/face/face.c
parente2e5e8d754f24a9f5c1ed0434c83dcd486a356eb (diff)
downloadgsoc2013-evolution-7352689ab7e6cfa835d52035f76756879306cfa9.tar
gsoc2013-evolution-7352689ab7e6cfa835d52035f76756879306cfa9.tar.gz
gsoc2013-evolution-7352689ab7e6cfa835d52035f76756879306cfa9.tar.bz2
gsoc2013-evolution-7352689ab7e6cfa835d52035f76756879306cfa9.tar.lz
gsoc2013-evolution-7352689ab7e6cfa835d52035f76756879306cfa9.tar.xz
gsoc2013-evolution-7352689ab7e6cfa835d52035f76756879306cfa9.tar.zst
gsoc2013-evolution-7352689ab7e6cfa835d52035f76756879306cfa9.zip
** Fixes part of bug #474000
2007-09-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #474000 * addressbook/importers/evolution-ldif-importer.c: Remove redundant Base64 codec implementation. Use GLib's. * mail/em-format-html.c (efh_format_headers): * mail/em-migrate.c (upgrade_passwords_1_2): * plugins/face/face.c: Use GLib's Base64 API instead of Camel's. svn path=/trunk/; revision=34325
Diffstat (limited to 'plugins/face/face.c')
-rw-r--r--plugins/face/face.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/face/face.c b/plugins/face/face.c
index 9e17fecc43..a747c3710a 100644
--- a/plugins/face/face.c
+++ b/plugins/face/face.c
@@ -98,7 +98,7 @@ void org_gnome_composer_face (EPlugin * ep, EMMenuTargetWidget * t)
d (printf ("\n\a Invalid Image Size. Please choose a 48*48 image\n\a"));
e_error_run (NULL, "org.gnome.evolution.plugins.face:invalid-image-size", NULL, NULL);
} else {
- file_contents = camel_base64_encode_simple (file_contents, length);
+ file_contents = g_base64_encode (file_contents, length);
g_file_set_contents (filename, file_contents, -1, &error);
}
}