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();