diff --git a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp index 0f73bd96e..1be9cdfe7 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp @@ -110,7 +110,7 @@ bool CConfigFile::load(const QString &filename) profile.account = settings.value("account").toString(); profile.server = settings.value("server").toString(); profile.executable = settings.value("executable").toString(); - profile.parameters = settings.value("parameters").toString(); + profile.arguments = settings.value("arguments").toString(); profile.comments = settings.value("comments").toString(); settings.endGroup(); @@ -178,7 +178,7 @@ bool CConfigFile::save() const settings.setValue("account", profile.account); settings.setValue("server", profile.server); settings.setValue("executable", profile.executable); - settings.setValue("parameters", profile.parameters); + settings.setValue("arguments", profile.arguments); settings.setValue("comments", profile.comments); settings.endGroup(); diff --git a/code/ryzom/tools/client/ryzom_installer/src/configfile.h b/code/ryzom/tools/client/ryzom_installer/src/configfile.h index acff20b3d..649d6404e 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/configfile.h +++ b/code/ryzom/tools/client/ryzom_installer/src/configfile.h @@ -52,7 +52,7 @@ struct CProfile QString name; QString server; QString executable; - QString parameters; + QString arguments; QString comments; };