]> git.lyx.org Git - features.git/commitdiff
compile fix: add missing lyx::to_utf8() around _()
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 10 Sep 2006 08:14:30 +0000 (08:14 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 10 Sep 2006 08:14:30 +0000 (08:14 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14956 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/gtk/GPreferences.C

index 928a4d5d235a077736f26c1c935b41e77a5d1376..091bae2d6ca69be592b7e45cd6227a12a180bfc4 100644 (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