diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-08-11 06:36:41 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-08-11 06:36:41 +0800 |
commit | 78544223ad29c9e74282134663370c3c71360f1b (patch) | |
tree | aad15f9a6c407fe000ebda865c012b4b9e440d55 /composer | |
parent | 8e3b907c2e99770452549aa310a65cce4573cb67 (diff) | |
download | gsoc2013-evolution-78544223ad29c9e74282134663370c3c71360f1b.tar gsoc2013-evolution-78544223ad29c9e74282134663370c3c71360f1b.tar.gz gsoc2013-evolution-78544223ad29c9e74282134663370c3c71360f1b.tar.bz2 gsoc2013-evolution-78544223ad29c9e74282134663370c3c71360f1b.tar.lz gsoc2013-evolution-78544223ad29c9e74282134663370c3c71360f1b.tar.xz gsoc2013-evolution-78544223ad29c9e74282134663370c3c71360f1b.tar.zst gsoc2013-evolution-78544223ad29c9e74282134663370c3c71360f1b.zip |
Removed comment about the need to resolve nicknames properly, because we
2001-08-10 Jon Trowbridge <trow@ximian.com>
* e-msg-composer-hdrs.c (set_recipients): Removed comment about
the need to resolve nicknames properly, because we now do that.
2001-08-10 Jon Trowbridge <trow@ximian.com>
* e-filter-bar.h: Set the subitems to NULL in the pre-defined
ESearchBarItems.
* e-filter-bar.c (rule_editor_clicked): Set the ESearchBarItem's
subitems to NULL.
(build_items): Set the ESearchBarItem's subitems to NULL.
(e_filter_bar_new): Set the ESearchBarItem's subitems to NULL.
* e-search-bar.c: Added support for subitems, so that a search
option can key off of another option menu rather than just an
entry.
2001-08-10 Jon Trowbridge <trow@ximian.com>
* gui/component/addressbook.c: Set the ESearchBarItem
subitems explicitly to NULL.
2001-08-10 Jon Trowbridge <trow@ximian.com>
* gui/cal-search-bar.c: Where we have ESearchBarItems, set their
subitems to NULL.
2001-08-10 Jon Trowbridge <trow@ximian.com>
* folder-browser.c: Set our ESearchBarItems subitems to NULL.
svn path=/trunk/; revision=11904
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer-hdrs.c | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 850f605303..5286653640 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2001-08-10 Jon Trowbridge <trow@ximian.com> + + * e-msg-composer-hdrs.c (set_recipients): Removed comment about + the need to resolve nicknames properly, because we now do that. + 2001-08-09 Radek Doulik <rodo@ximian.com> * e-msg-composer.c (set_focus_to_editor): new helper function, diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c index 916d8014c0..fcc99e0806 100644 --- a/composer/e-msg-composer-hdrs.c +++ b/composer/e-msg-composer-hdrs.c @@ -644,6 +644,8 @@ set_recipients (CamelMimeMessage *msg, GtkWidget *entry_widget, const gchar *typ if (destv) { dest_str = e_destination_get_address_textv (destv); + + g_message ("dest_str=[%s]", dest_str); /* dest_str has been utf8 encoded 2x by this point...not good */ @@ -651,9 +653,6 @@ set_recipients (CamelMimeMessage *msg, GtkWidget *entry_widget, const gchar *typ addr = camel_internet_address_new (); camel_address_unformat (CAMEL_ADDRESS (addr), dest_str); - /* TODO: In here, we could cross-reference the names with an alias book - or address book, it should be sufficient for unformat to do the parsing too */ - camel_mime_message_set_recipients (msg, type, addr); camel_object_unref (CAMEL_OBJECT (addr)); |