summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorVitaliy Anderson <vanderson@smartru.com>2017-01-19 02:09:04 -0800
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-27 07:35:47 +0000
commit91ccb4dbf7cbe7e684c7a8183863e597d7205e57 (patch)
tree6e6a942e91e2c12fe30a9a7222324493ba9a75e3 /cui
parent78f5923e7cec0f6a0b3dbcbe29bad1980593454c (diff)
Compatibility options refactoring. Part 1
It relate to reduce the nubmer of copy-paste the same code and simplify adding compability options. Also using enum class instead enum can eliminate to occurrence an error relate to access to out of range an array. Change-Id: I07b862aac5f88da4a98e2273cb14daa09e70eacb Reviewed-on: https://gerrit.libreoffice.org/33543 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optgdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx
index 8f4412a53d91..f8244f5dd5cc 100644
--- a/cui/source/options/optgdlg.cxx
+++ b/cui/source/options/optgdlg.cxx
@@ -1426,7 +1426,7 @@ bool OfaLanguagesTabPage::FillItemSet( SfxItemSet* rSet )
SvtScriptType nNewType = SvtLanguageOptions::GetScriptTypeOfLanguage( eNewLocale );
bool bNewCJK = bool( nNewType & SvtScriptType::ASIAN );
SvtCompatibilityOptions aCompatOpts;
- aCompatOpts.SetDefault( COMPATIBILITY_PROPERTYNAME_EXPANDWORDSPACE, !bNewCJK );
+ aCompatOpts.SetDefault( SvtCompatibilityEntry::Index::ExpandWordSpace, !bNewCJK );
}
if(m_pDecimalSeparatorCB->IsValueChangedFromSaved())