Resolve issue #508. Settings saved to INI files in different folders.

--HG--
branch : feature
This commit is contained in:
Holger Pandel 2016-06-10 15:57:08 +02:00
parent 15c99de75e
commit 8735357fbf
2 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,5 @@
# Version 0.5.0
- [#508] Settings saved to INI files in different folders.
- [#193] Undeletable zombie arc objects.
- New feature. Groups.
- Tool "Curve intersect axis" store data about subpaths.

View File

@ -115,14 +115,14 @@ QString VCommonSettings::StandardTablesPath() const
//---------------------------------------------------------------------------------------------------------------------
QString VCommonSettings::GetPathIndividualMeasurements() const
{
QSettings settings(this->format(), this->scope(), this->organizationName());
QSettings settings(this->format(), this->scope(), this->organizationName(), "common");
return settings.value(SettingPathsIndividualMeasurements, QDir::homePath()).toString();
}
//---------------------------------------------------------------------------------------------------------------------
void VCommonSettings::SetPathIndividualMeasurements(const QString &value)
{
QSettings settings(this->format(), this->scope(), this->organizationName());
QSettings settings(this->format(), this->scope(), this->organizationName(), "common");
settings.setValue(SettingPathsIndividualMeasurements, value);
settings.sync();
}
@ -130,14 +130,14 @@ void VCommonSettings::SetPathIndividualMeasurements(const QString &value)
//---------------------------------------------------------------------------------------------------------------------
QString VCommonSettings::GetPathStandardMeasurements() const
{
QSettings settings(this->format(), this->scope(), this->organizationName());
QSettings settings(this->format(), this->scope(), this->organizationName(), "common");
return settings.value(SettingPathsStandardMeasurements, StandardTablesPath()).toString();
}
//---------------------------------------------------------------------------------------------------------------------
void VCommonSettings::SetPathStandardMeasurements(const QString &value)
{
QSettings settings(this->format(), this->scope(), this->organizationName());
QSettings settings(this->format(), this->scope(), this->organizationName(), "common");
settings.setValue(SettingPathsStandardMeasurements, value);
settings.sync();
}
@ -146,14 +146,14 @@ void VCommonSettings::SetPathStandardMeasurements(const QString &value)
//---------------------------------------------------------------------------------------------------------------------
QString VCommonSettings::GetPathTemplate() const
{
QSettings settings(this->format(), this->scope(), this->organizationName());
QSettings settings(this->format(), this->scope(), this->organizationName(), "common");
return settings.value(SettingPathsTemplates, TemplatesPath()).toString();
}
//---------------------------------------------------------------------------------------------------------------------
void VCommonSettings::SetPathTemplate(const QString &value)
{
QSettings settings(this->format(), this->scope(), this->organizationName());
QSettings settings(this->format(), this->scope(), this->organizationName(), "common");
settings.setValue(SettingPathsTemplates, value);
settings.sync();
}