refs #697, BlackGui settings renamed

This commit is contained in:
Klaus Basan
2016-08-01 15:37:42 +02:00
parent 8013a6ac9c
commit 862a84b661
12 changed files with 91 additions and 91 deletions

View File

@@ -118,7 +118,7 @@ namespace BlackGui
void CNavigatorDialog::restoreFromSettings()
{
const CSettingsNavigator s = this->m_settings.get();
const CNavigatorSettings s = this->m_settings.get();
this->setContentsMargins(s.getMargins());
if (this->isFrameless() != s.isFramless()) { this->toggleFrameless(); }
this->buildNavigator(s.getColumns());
@@ -128,7 +128,7 @@ namespace BlackGui
void CNavigatorDialog::saveToSettings()
{
CSettingsNavigator s = this->m_settings.get();
CNavigatorSettings s = this->m_settings.get();
s.setFrameless(this->isFrameless());
s.setMargins(this->contentsMargins());
s.setGeometry(this->saveGeometry());