From 052b9a8874ea16e714da45ab0e30b34eb54ba4a5 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Mon, 7 Jul 2008 23:41:19 +0000 Subject: [PATCH] Fix bug http://bugzilla.lyx.org/show_bug.cgi?id=4943 . git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25503 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiAbout.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/qt4/GuiAbout.cpp b/src/frontends/qt4/GuiAbout.cpp index ce1427adfa..4514fc7fb4 100644 --- a/src/frontends/qt4/GuiAbout.cpp +++ b/src/frontends/qt4/GuiAbout.cpp @@ -41,6 +41,7 @@ static QString credits() } else { file.open(QIODevice::ReadOnly); QTextStream ts(&file); + ts.setCodec("UTF-8"); QString line; do { line = ts.readLine();