diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-08-03 05:23:09 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-08-03 05:23:09 +0800 |
commit | 74eea9a7179087e57dbf44196021a2d1f85063d0 (patch) | |
tree | 14b32fa491644cb897e5ea72ce080dd1e5d477ff /mail | |
parent | ed7261a7433bf452d95bbe8e015d3e87a1b4a356 (diff) | |
download | gsoc2013-evolution-74eea9a7179087e57dbf44196021a2d1f85063d0.tar gsoc2013-evolution-74eea9a7179087e57dbf44196021a2d1f85063d0.tar.gz gsoc2013-evolution-74eea9a7179087e57dbf44196021a2d1f85063d0.tar.bz2 gsoc2013-evolution-74eea9a7179087e57dbf44196021a2d1f85063d0.tar.lz gsoc2013-evolution-74eea9a7179087e57dbf44196021a2d1f85063d0.tar.xz gsoc2013-evolution-74eea9a7179087e57dbf44196021a2d1f85063d0.tar.zst gsoc2013-evolution-74eea9a7179087e57dbf44196021a2d1f85063d0.zip |
Fix a GError message.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/em-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 51bf58664e..2bc0143eb3 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -1603,7 +1603,7 @@ try_open_e_book (EBook *book, gboolean only_if_exists, GError **error) if (!e_book_open_async (book, only_if_exists, try_open_e_book_cb, &data)) { e_flag_free (flag); g_clear_error (error); - g_set_error (error, E_BOOK_ERROR, E_BOOK_ERROR_OTHER_ERROR, "Failed to call e_book_async_open_ex."); + g_set_error (error, E_BOOK_ERROR, E_BOOK_ERROR_OTHER_ERROR, "Failed to call e_book_open_async."); return FALSE; } |