diff options
author | Milan Crha <mcrha@redhat.com> | 2008-09-23 19:26:07 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-09-23 19:26:07 +0800 |
commit | ac1a2a03176315bf55a9c840c3dd7b808757a5ab (patch) | |
tree | 6199caeca3f7b833055975bc3ac29d8683d5c92a /addressbook | |
parent | 635f62d060ad48770ddc2a53aa7a2a6b4be86492 (diff) | |
download | gsoc2013-evolution-ac1a2a03176315bf55a9c840c3dd7b808757a5ab.tar.gz gsoc2013-evolution-ac1a2a03176315bf55a9c840c3dd7b808757a5ab.tar.zst gsoc2013-evolution-ac1a2a03176315bf55a9c840c3dd7b808757a5ab.zip |
** Fix for bug #552575
2008-09-23 Milan Crha <mcrha@redhat.com>
** Fix for bug #552575
* gui/widgets/eab-gui-util.c: (eab_send_contact_list_as_attachment):
Register default callbacks to composer to be able to send/save draft.
svn path=/trunk/; revision=36432
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index e04c56cf32..5d94b4a3d0 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,12 @@ 2008-09-23 Milan Crha <mcrha@redhat.com> + ** Fix for bug #552575 + + * gui/widgets/eab-gui-util.c: (eab_send_contact_list_as_attachment): + Register default callbacks to composer to be able to send/save draft. + +2008-09-23 Milan Crha <mcrha@redhat.com> + ** Part of fix for bug #272391 * gui/component/apps_evolution_addressbook.schemas.in: diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 12d6e9cb76..ac6f89c582 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -888,6 +888,7 @@ eab_send_contact_list_as_attachment (GList *contacts) composer = e_msg_composer_new (); table = e_msg_composer_get_header_table (composer); + em_composer_utils_setup_default_callbacks (composer); attachment = camel_mime_part_new (); data = eab_contact_list_to_string (contacts); |