diff options
author | simonb <simonb> | 2006-05-07 10:08:25 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-05-07 10:08:25 (GMT) |
commit | faf043bef92338fe976e639e94d309764065b8b7 (patch) | |
tree | 6554ea89ff6064465bd605da8f640ee43212b356 /src/FbTk/FbString.cc | |
parent | ac098b4d0f0640b2997ff674a5c1b3447b6ba09a (diff) | |
download | fluxbox-faf043bef92338fe976e639e94d309764065b8b7.zip fluxbox-faf043bef92338fe976e639e94d309764065b8b7.tar.bz2 |
more utf8 changes, notably window titles
Diffstat (limited to 'src/FbTk/FbString.cc')
-rw-r--r-- | src/FbTk/FbString.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/FbTk/FbString.cc b/src/FbTk/FbString.cc index a88b237..6c5ffbb 100644 --- a/src/FbTk/FbString.cc +++ b/src/FbTk/FbString.cc | |||
@@ -107,6 +107,14 @@ void shutdown() { | |||
107 | @param size number of BYTES to convert | 107 | @param size number of BYTES to convert |
108 | @return the recoded string, or 0 on failure | 108 | @return the recoded string, or 0 on failure |
109 | */ | 109 | */ |
110 | |||
111 | /** | ||
112 | --NOTE-- | ||
113 | In the "C" locale, this will strip any high-bit characters | ||
114 | because C means 7-bit ASCII charset. If you don't want this | ||
115 | then you need to set your locale to something UTF-8, OR something | ||
116 | ISO8859-1. | ||
117 | */ | ||
110 | std::string recode(iconv_t cd, | 118 | std::string recode(iconv_t cd, |
111 | const std::string &in) { | 119 | const std::string &in) { |
112 | 120 | ||