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
This commit is contained in:
Georg Baum 2006-09-10 08:14:30 +00:00
parent 0dc81f2463
commit d929950da4

View File

@ -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