From 09365bf01c61dd2a28eee92fd332c2b6ca82ce2b Mon Sep 17 00:00:00 2001 From: Jon Trowbridge Date: Thu, 26 Jul 2001 05:46:37 +0000 Subject: Removed some debugging chatter. 2001-07-26 Jon Trowbridge * backend/ebook/e-card.c: Removed some debugging chatter. * gui/component/select-names/e-select-names-manager.c (e_select_names_manager_create_entry): Store the completion handler in the entry's object data. * gui/component/select-names/e-select-names-bonobo.c (entry_get_property_fn): Added support for getting "destinations" and "allow_contact_lists" properties. (entry_set_property_fn): Added support for setting "destinations" and "allow_contact_lists" properties. (impl_SelectNames_get_entry_for_section): Added definitions for "destinations" and "allow_contact_lists" properties. * gui/component/select-names/e-select-names-completion.c (e_select_names_completion_get_match_contact_lists): Added. (e_select_names_completion_set_match_contact_lists): Added. Controls whether contact lists are offered as options during completion. (book_query_process_card_list): Check if match_contact_lists is set before (duh!) matching on a contact list. (e_select_names_completion_init): Set match_contact_lists to TRUE by default. 2001-07-26 Jon Trowbridge * 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.) svn path=/trunk/; revision=11422 --- composer/ChangeLog | 6 ++++++ composer/e-msg-composer-hdrs.c | 5 +---- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'composer') 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 + + * 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 * 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 */ -- cgit v1.2.3