From 9e6cd4dbe1cb31d07bfd04d8b2a175ff4dad2064 Mon Sep 17 00:00:00 2001 From: uid22944 Date: Thu, 7 Dec 2006 22:22:09 +0000 Subject: Fixed problem on Solaris where "LATIN1" wasn't supported by iconv so typing had no effect. --- gtk/PlatGTK.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 1ae3a040b..50954d475 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -745,7 +745,7 @@ const char *CharacterSetID(int characterSet) { case SC_CHARSET_ANSI: return ""; case SC_CHARSET_DEFAULT: - return "LATIN1"; + return "ISO-8859-1"; case SC_CHARSET_BALTIC: return "ISO-8859-13"; case SC_CHARSET_CHINESEBIG5: -- cgit v1.2.3