diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index f93fe4162c..0479225d2d 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2008-04-28 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes bug #529768 + + * gui/widgets/eab-gui-util.c (eab_send_to_contact_and_email_num_list): + Setup default callbacks for the newly created EMsgComposer widget. + 2008-04-23 Milan Crha <mcrha@redhat.com> ** Part of fix for bug #529254 diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 6b8973637b..14aee2a027 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -40,6 +40,7 @@ #include "eab-contact-merging.h" #include <gnome.h> #include <composer/e-msg-composer.h> +#include <mail/em-composer-utils.h> /* we link to camel for decoding quoted printable email addresses */ #include <camel/camel-mime-utils.h> @@ -788,6 +789,7 @@ eab_send_to_contact_and_email_num_list (GList *contact_list) composer = e_msg_composer_new (); table = e_msg_composer_get_header_table (composer); + em_composer_utils_setup_default_callbacks (composer); to_array = g_ptr_array_new (); bcc_array = g_ptr_array_new (); |