Fixed synchronization (correct path to Valentina settings)

--HG--
branch : feature
This commit is contained in:
Valentina Zhuravska 2015-10-18 16:17:56 +03:00
parent 251cd94407
commit 9be90e75db

View File

@ -91,7 +91,7 @@ void VSettings::SetLabelLanguage(const QString &value)
//---------------------------------------------------------------------------------------------------------------------
QString VSettings::GetPathPattern() const
{
QSettings settings(this->format(), this->scope(), this->organizationName());
QSettings settings(this->format(), this->scope(), this->organizationName(), this->applicationName());
return settings.value(SettingPathsPattern, QDir::homePath()).toString();
}