From aa1b911b64641bbf29991af7c6f7798739aba667 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 1 Apr 2015 12:14:22 +0200 Subject: loplugin:staticmethods Change-Id: I1f6c6d13697aa397067478d6b07429120106e6bd --- svl/source/config/asiancfg.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svl/source') 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 { -- cgit