mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Use "arguments" instead of "parameters"
--HG-- branch : feature-ryzom-installer
This commit is contained in:
parent
0fa672f5f5
commit
d4f6be1578
2 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
|
@ -52,7 +52,7 @@ struct CProfile
|
|||
QString name;
|
||||
QString server;
|
||||
QString executable;
|
||||
QString parameters;
|
||||
QString arguments;
|
||||
QString comments;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue