diff options
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appcfg.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sfx2/source/appl/appcfg.cxx b/sfx2/source/appl/appcfg.cxx index b001f83f01af..5576c5c5b9bd 100644 --- a/sfx2/source/appl/appcfg.cxx +++ b/sfx2/source/appl/appcfg.cxx @@ -112,7 +112,6 @@ void SfxApplication::GetOptions( SfxItemSet& rSet ) bool bRet = false; const WhichRangesContainer& pRanges = rSet.GetRanges(); - SvtMiscOptions aMiscOptions; for (auto const & pRange : pRanges) { @@ -122,7 +121,7 @@ void SfxApplication::GetOptions( SfxItemSet& rSet ) { case SID_ATTR_BUTTON_BIGSIZE : { - if( rSet.Put( SfxBoolItem( SID_ATTR_BUTTON_BIGSIZE, aMiscOptions.AreCurrentSymbolsLarge() ) ) ) + if( rSet.Put( SfxBoolItem( SID_ATTR_BUTTON_BIGSIZE, SvtMiscOptions::AreCurrentSymbolsLarge() ) ) ) bRet = true; break; } |