diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-01 12:14:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-02 09:38:29 +0200 |
commit | aa1b911b64641bbf29991af7c6f7798739aba667 (patch) | |
tree | 49f367d26ca57cc7a84dcdcca90613d6b46fed1f /svl/source | |
parent | f70d8277941ada544736abdb72548fb16e0d992d (diff) |
loplugin:staticmethods
Change-Id: I1f6c6d13697aa397067478d6b07429120106e6bd
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/config/asiancfg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/config/asiancfg.cxx b/svl/source/config/asiancfg.cxx index c67f86d34933..a4af225c86ba 100644 --- a/svl/source/config/asiancfg.cxx +++ b/svl/source/config/asiancfg.cxx @@ -82,7 +82,7 @@ bool SvxAsianConfig::IsKerningWesternTextOnly() const { void SvxAsianConfig::SetKerningWesternTextOnly(bool value) { officecfg::Office::Common::AsianLayout::IsKerningWesternTextOnly::set( - value, impl_->batch, impl_->context); + value, impl_->batch); } sal_Int16 SvxAsianConfig::GetCharDistanceCompression() const { @@ -93,7 +93,7 @@ sal_Int16 SvxAsianConfig::GetCharDistanceCompression() const { void SvxAsianConfig::SetCharDistanceCompression(sal_Int16 value) { officecfg::Office::Common::AsianLayout::CompressCharacterDistance::set( - value, impl_->batch, impl_->context); + value, impl_->batch); } css::uno::Sequence< css::lang::Locale > SvxAsianConfig::GetStartEndCharLocales() @@ -138,7 +138,7 @@ void SvxAsianConfig::SetStartEndChars( assert((startChars == 0) == (endChars == 0)); css::uno::Reference< css::container::XNameContainer > set( officecfg::Office::Common::AsianLayout::StartEndCharacters::get( - impl_->batch, impl_->context)); + impl_->batch)); OUString name(toString(locale)); if (startChars == 0) { try { |