Changed: Minor changes, see #279

This commit is contained in:
kervala 2016-08-06 20:11:15 +02:00
parent a12b47c446
commit c74c8984b9

View file

@ -116,16 +116,16 @@ int main(int argc, char *argv[])
if (step == DisplayNoServerError) 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; return 1;
} }
// use product name from installer.ini // use product name from ryzom_installer.ini
if (!config.getProductName().isEmpty()) QApplication::setApplicationName(config.getProductName()); if (!config.getProductName().isEmpty()) QApplication::setApplicationName(config.getProductName());
// define commandline arguments // define commandline arguments
QCommandLineParser parser; QCommandLineParser parser;
// parser.setApplicationDescription(DESCRIPTION); parser.setApplicationDescription(QApplication::tr("Instalation and launcher tool for Ryzom"));
parser.addHelpOption(); parser.addHelpOption();
parser.addVersionOption(); parser.addVersionOption();