From cc42ec859ed92364d0914204ddc6c4d6a2ddd750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Fri, 21 Apr 2017 12:09:14 +0200 Subject: Introduce fix to utf8 map to make meka's name work in the GUI. Note: This actually makes the map incorrect but shouldn't have any negative effect on the usage. This whole issue should be fixed by changing DG generally to utf8 encoding. --- plugingui/utf8.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugingui/utf8.cc b/plugingui/utf8.cc index 70aeb27..f352a15 100644 --- a/plugingui/utf8.cc +++ b/plugingui/utf8.cc @@ -287,6 +287,8 @@ UTF8::UTF8() map_decode["ý"] = "ý"; map_decode["þ"] = "þ"; map_decode["ÿ"] = "ÿ"; + // FIXME: This is just a hack to make Goran Mekic's name work. + map_decode["ć"] = "c"; } std::string UTF8::fromLatin1(std::string const& s) -- cgit v1.2.3