From bd1848375eb70e4d72e66a76f51e0df75fc97084 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Sat, 7 Jun 2008 12:43:44 +0000 Subject: [PATCH] Fix bug http://bugzilla.lyx.org/show_bug.cgi?id=4923 . git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25188 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiAbout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiAbout.cpp b/src/frontends/qt4/GuiAbout.cpp index ff6254e26d..ce1427adfa 100644 --- a/src/frontends/qt4/GuiAbout.cpp +++ b/src/frontends/qt4/GuiAbout.cpp @@ -31,7 +31,7 @@ namespace frontend { static QString credits() { QString res; - QFile file(toqstr(package().system_support().absFilename()) + "CREDITS"); + QFile file(toqstr(package().system_support().absFilename()) + "/CREDITS"); QTextStream out(&res); if (file.isReadable()) {