From c3d1865bdead9409e01aeb83e38c1a0b63e2f460 Mon Sep 17 00:00:00 2001 From: Vadim Kurland Date: Sat, 2 Aug 2008 20:54:27 +0000 Subject: [PATCH] using respath to find help files --- src/gui/Help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Help.cpp b/src/gui/Help.cpp index f947b35d6..9200679b4 100644 --- a/src/gui/Help.cpp +++ b/src/gui/Help.cpp @@ -45,7 +45,7 @@ Help::Help(QWidget *parent, const QString &help_file, const QString &title) : QFile f; QTextStream ts; - f.setFileName(QString(RES_DIR) + "/help/" + help_file); + f.setFileName(QString(respath.c_str()) + "/help/" + help_file); if (f.exists()) {