diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-03-22 07:37:01 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-03-22 07:37:01 +0000 |
commit | f0314c16b1392a2021874136f80fd9350f16fe84 (patch) | |
tree | 2f46062c8e00fc907b835417724a6739bb96aba2 /src/textview.c | |
parent | 951ba1bd0fd5582c507a807b5fe0dd8454b5271c (diff) |
made error check strict on Japanese code conversion.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@185 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/textview.c')
-rw-r--r-- | src/textview.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textview.c b/src/textview.c index d5fc7353..8583d034 100644 --- a/src/textview.c +++ b/src/textview.c @@ -1023,7 +1023,7 @@ static void textview_write_line(TextView *textview, const gchar *str, if (conv) { buf = conv_convert(conv, str); if (!buf) - buf = conv_utf8todisp(str); + buf = conv_utf8todisp(str, NULL); } else buf = g_strdup(str); @@ -1080,7 +1080,7 @@ static void textview_write_link(TextView *textview, const gchar *str, if (conv) { buf = conv_convert(conv, str); if (!buf) - buf = conv_utf8todisp(str); + buf = conv_utf8todisp(str, NULL); } else buf = g_strdup(str); |