diff options
Diffstat (limited to 'sw/source/ui/config')
-rw-r--r-- | sw/source/ui/config/optload.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/ui/config/optload.cxx b/sw/source/ui/config/optload.cxx index cde9a8b91b0c..214a961b848d 100644 --- a/sw/source/ui/config/optload.cxx +++ b/sw/source/ui/config/optload.cxx @@ -345,10 +345,13 @@ void SwLoadOptPage::Reset( const SfxItemSet* rSet) m_pUseCharUnit->SaveValue(); m_pWordCountED->SetText(officecfg::Office::Writer::WordCount::AdditionalSeparators::get()); + m_pWordCountED->Enable(!officecfg::Office::Writer::WordCount::AdditionalSeparators::isReadOnly()); m_pWordCountED->SaveValue(); m_pShowStandardizedPageCount->Check(officecfg::Office::Writer::WordCount::ShowStandardizedPageCount::get()); + m_pShowStandardizedPageCount->Enable(!officecfg::Office::Writer::WordCount::ShowStandardizedPageCount::isReadOnly()); m_pShowStandardizedPageCount->SaveValue(); m_pStandardizedPageSizeNF->SetValue(officecfg::Office::Writer::WordCount::StandardizedPageSize::get()); + m_pStandardizedPageSizeNF->Enable(!officecfg::Office::Writer::WordCount::StandardizedPageSize::isReadOnly()); m_pStandardizedPageSizeNF->SaveValue(); m_pStandardizedPageSizeNF->Enable(m_pShowStandardizedPageCount->IsChecked()); } |