diff options
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 6 | ||||
-rw-r--r-- | composer/e-msg-composer-hdrs.c | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 5ac58d046d..0f6d71c0f6 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,9 @@ +2001-07-26 Jon Trowbridge <trow@ximian.com> + + * e-msg-composer-hdrs.c (set_recipients): Get "destinations", + rather than "text" from the entry_widget. (The getters/setters in + the control have been made more symmetric.) + 2001-07-18 Jason Leach <jleach@ximian.com> * e-msg-composer-hdrs.c (create_from_optionmenu): Update to the diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c index f27f32fe2d..472d3ba0ce 100644 --- a/composer/e-msg-composer-hdrs.c +++ b/composer/e-msg-composer-hdrs.c @@ -640,14 +640,11 @@ set_recipients (CamelMimeMessage *msg, GtkWidget *entry_widget, const gchar *typ char *string = NULL, *dest_str = NULL; int i; - bonobo_widget_get_property (BONOBO_WIDGET (entry_widget), "text", &string, NULL); + bonobo_widget_get_property (BONOBO_WIDGET (entry_widget), "destinations", &string, NULL); destv = e_destination_importv (string); - g_message ("importv: [%s]", string); - if (destv) { dest_str = e_destination_get_address_textv (destv); - g_message ("destination is: %s", dest_str); /* dest_str has been utf8 encoded 2x by this point...not good */ |