aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer-hdrs.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-07-13 07:06:19 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-07-13 07:06:19 +0800
commit4216b423202385c6b61ef49c9dbf40012d5e0903 (patch)
treed3bb05c0d0a37be0faaadc70a729d5db7608c95f /composer/e-msg-composer-hdrs.c
parenteb445aed1219c25523942d511d8ac67ef463a554 (diff)
downloadgsoc2013-evolution-4216b423202385c6b61ef49c9dbf40012d5e0903.tar
gsoc2013-evolution-4216b423202385c6b61ef49c9dbf40012d5e0903.tar.gz
gsoc2013-evolution-4216b423202385c6b61ef49c9dbf40012d5e0903.tar.bz2
gsoc2013-evolution-4216b423202385c6b61ef49c9dbf40012d5e0903.tar.lz
gsoc2013-evolution-4216b423202385c6b61ef49c9dbf40012d5e0903.tar.xz
gsoc2013-evolution-4216b423202385c6b61ef49c9dbf40012d5e0903.tar.zst
gsoc2013-evolution-4216b423202385c6b61ef49c9dbf40012d5e0903.zip
Removed a warning that I don't need anymore. This code is working
2001-07-12 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (menu_changed_charset_cb): Removed a warning that I don't need anymore. This code is working wonderfully ;-) svn path=/trunk/; revision=11074
Diffstat (limited to 'composer/e-msg-composer-hdrs.c')
-rw-r--r--composer/e-msg-composer-hdrs.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c
index 9180cfd216..b21f7ca323 100644
--- a/composer/e-msg-composer-hdrs.c
+++ b/composer/e-msg-composer-hdrs.c
@@ -635,39 +635,40 @@ set_recipients (CamelMimeMessage *msg, GtkWidget *entry_widget, const gchar *typ
EDestination **destv;
CamelInternetAddress *addr;
char *string = NULL, *dest_str = NULL;
- gint i=0;
+ int i;
bonobo_widget_get_property (BONOBO_WIDGET (entry_widget), "text", &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 */
+
if (dest_str && *dest_str) {
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));
-
+
g_free (dest_str);
}
-
- for (i=0; destv[i]; ++i) {
+
+ for (i = 0; destv[i]; i++) {
e_destination_touch (destv[i]);
gtk_object_unref (GTK_OBJECT (destv[i]));
}
g_free (destv);
}
-
+
g_free (string);
}