From c74c8984b9761972de265f6c37e3f08a9e88890c Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 6 Aug 2016 20:11:15 +0200 Subject: [PATCH] Changed: Minor changes, see #279 --- code/ryzom/tools/client/ryzom_installer/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/main.cpp b/code/ryzom/tools/client/ryzom_installer/src/main.cpp index 82ab9939c..481c15bff 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/main.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/main.cpp @@ -116,16 +116,16 @@ int main(int argc, char *argv[]) if (step == DisplayNoServerError) { - QMessageBox::critical(NULL, QApplication::tr("Error"), QApplication::tr("Unable to find installer.ini")); + QMessageBox::critical(NULL, QApplication::tr("Error"), QApplication::tr("Unable to find ryzom_installer.ini")); return 1; } - // use product name from installer.ini + // use product name from ryzom_installer.ini if (!config.getProductName().isEmpty()) QApplication::setApplicationName(config.getProductName()); // define commandline arguments QCommandLineParser parser; -// parser.setApplicationDescription(DESCRIPTION); + parser.setApplicationDescription(QApplication::tr("Instalation and launcher tool for Ryzom")); parser.addHelpOption(); parser.addVersionOption();