aboutsummaryrefslogtreecommitdiff
path: root/src/sourcewindow.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-21 04:41:10 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-21 04:41:10 +0000
commit9e5073da15a5359189724b670e5ed19cb6c4b0cb (patch)
tree129fa1e38f484d4d38179df9fac7ba03cd2b68a0 /src/sourcewindow.c
parentb103e4cf960dd4c9e601d63206388f35b657f19a (diff)
several code conversion fix.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@27 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/sourcewindow.c')
-rw-r--r--src/sourcewindow.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sourcewindow.c b/src/sourcewindow.c
index 550e6fb3..64bf30ea 100644
--- a/src/sourcewindow.c
+++ b/src/sourcewindow.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2003 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2005 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -154,8 +154,7 @@ void source_window_append(SourceWindow *sourcewin, const gchar *str)
len = strlen(str) + 1;
Xalloca(out, len, return);
-#warning FIXME_GTK2
- conv_localetodisp(out, len, str);
+ conv_utf8todisp(out, len, str);
gtk_text_buffer_get_iter_at_offset(buffer, &iter, -1);
gtk_text_buffer_insert(buffer, &iter, out, -1);