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"
This commit is contained in:
parent
5fa1a8bf20
commit
cdfea62e11
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.account = settings.value("account").toString();
|
||||||
profile.server = settings.value("server").toString();
|
profile.server = settings.value("server").toString();
|
||||||
profile.executable = settings.value("executable").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();
|
profile.comments = settings.value("comments").toString();
|
||||||
|
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
@ -178,7 +178,7 @@ bool CConfigFile::save() const
|
||||||
settings.setValue("account", profile.account);
|
settings.setValue("account", profile.account);
|
||||||
settings.setValue("server", profile.server);
|
settings.setValue("server", profile.server);
|
||||||
settings.setValue("executable", profile.executable);
|
settings.setValue("executable", profile.executable);
|
||||||
settings.setValue("parameters", profile.parameters);
|
settings.setValue("arguments", profile.arguments);
|
||||||
settings.setValue("comments", profile.comments);
|
settings.setValue("comments", profile.comments);
|
||||||
|
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
|
@ -52,7 +52,7 @@ struct CProfile
|
||||||
QString name;
|
QString name;
|
||||||
QString server;
|
QString server;
|
||||||
QString executable;
|
QString executable;
|
||||||
QString parameters;
|
QString arguments;
|
||||||
QString comments;
|
QString comments;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue