From d929950da4b26bab41ef9b66370e0fed0519cbae Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Sun, 10 Sep 2006 08:14:30 +0000 Subject: [PATCH] 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 --- src/frontends/gtk/GPreferences.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2