From: Georg Baum Date: Sun, 10 Sep 2006 08:14:30 +0000 (+0000) Subject: compile fix: add missing lyx::to_utf8() around _() X-Git-Tag: 1.6.10~12613 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d929950da4b26bab41ef9b66370e0fed0519cbae;p=features.git compile fix: add missing lyx::to_utf8() around _() git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14956 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/gtk/GPreferences.C b/src/frontends/gtk/GPreferences.C index 928a4d5d23..091bae2d6c 100644 --- a/src/frontends/gtk/GPreferences.C +++ b/src/frontends/gtk/GPreferences.C @@ -149,10 +149,10 @@ void GPreferences::doBuild() spellcheckercombo_.append_text ("aspell"); spellcheckercombo_.append_text ("hspell"); #ifdef USE_PSPELL - spellcheckercombo_.append_text (_("pspell (library)")); + spellcheckercombo_.append_text(lyx::to_utf8(_("pspell (library)"))); #else #ifdef USE_ASPELL - spellcheckercombo_.append_text (_("aspell (library)")); + spellcheckercombo_.append_text(lyx::to_utf8(_("aspell (library)"))); #endif #endif