diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-12-13 08:58:12 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-12-13 08:58:12 +0800 |
commit | 2fc0744447411e015e1ed3180bbe160acbcb57f5 (patch) | |
tree | 0d5affb8bc2378df0f188ff3fd6618ae4c16b761 /composer/e-msg-composer-hdrs.c | |
parent | a0f7893035270cdb5d9672b2d6f17b706fc0467e (diff) | |
download | gsoc2013-evolution-2fc0744447411e015e1ed3180bbe160acbcb57f5.tar gsoc2013-evolution-2fc0744447411e015e1ed3180bbe160acbcb57f5.tar.gz gsoc2013-evolution-2fc0744447411e015e1ed3180bbe160acbcb57f5.tar.bz2 gsoc2013-evolution-2fc0744447411e015e1ed3180bbe160acbcb57f5.tar.lz gsoc2013-evolution-2fc0744447411e015e1ed3180bbe160acbcb57f5.tar.xz gsoc2013-evolution-2fc0744447411e015e1ed3180bbe160acbcb57f5.tar.zst gsoc2013-evolution-2fc0744447411e015e1ed3180bbe160acbcb57f5.zip |
Don't convert the utf-8 string to a gtkstring because the widget expects
2000-12-12 Jeffrey Stedfast <fejj@helixcode.com>
* e-msg-composer-hdrs.c (set_entry): Don't convert the utf-8
string to a gtkstring because the widget expects to get a utf-8
string.
svn path=/trunk/; revision=6960
Diffstat (limited to 'composer/e-msg-composer-hdrs.c')
-rw-r--r-- | composer/e-msg-composer-hdrs.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c index 0ab2b76829..647ba2b3f1 100644 --- a/composer/e-msg-composer-hdrs.c +++ b/composer/e-msg-composer-hdrs.c @@ -492,20 +492,16 @@ set_entry (BonoboWidget *bonobo_widget, { GString *string; const GList *p; - char *s; - - string = g_string_new (NULL); + + string = g_string_new (""); for (p = list; p != NULL; p = p->next) { if (string->str[0] != '\0') g_string_append (string, ", "); g_string_append (string, p->data); } - - /* FIXME: This is just a temporary workaround, the widget should grok it */ - s = e_utf8_to_gtk_string((GtkWidget *)bonobo_widget, string->str); - bonobo_widget_set_property (BONOBO_WIDGET (bonobo_widget), "text", s, NULL); - - g_free(s); + + bonobo_widget_set_property (BONOBO_WIDGET (bonobo_widget), "text", string->str, NULL); + g_string_free (string, TRUE); } |