diff options
-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); |