From 2dfc4c0845c72b3a1cf19546a1606907f36eea42 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 4 Nov 2016 12:28:59 +0200 Subject: loplugin:oncevar in desktop..filter Change-Id: I21c47cacbcd68f06eea7ccbbfa6d04fc65e2b7ee Reviewed-on: https://gerrit.libreoffice.org/30564 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- editeng/source/misc/svxacorr.cxx | 5 +---- editeng/source/uno/unonrule.cxx | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) (limited to 'editeng') diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 247d03bd9bc6..fafb4be81ebc 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -96,9 +96,6 @@ static const sal_Char /* also at these ends - Brackets and all kinds of begin characters */ sImplEndSkipChars[] = "\"\')]}\x83\x84\x89\x91\x92\x93\x94"; -// These characters are allowed in words: (for FnCapitalStartSentence) -static const sal_Char sImplWordChars[] = "-'"; - OUString EncryptBlockName_Imp(const OUString& rName); static inline bool IsWordDelim( const sal_Unicode c ) @@ -833,7 +830,7 @@ bool SvxAutoCorrect::FnCapitalStartSentence( SvxAutoCorrDoc& rDoc, } else if (pWordStt && !rCC.isDigit(aText, pStr - pStart)) { - if( lcl_IsInAsciiArr( sImplWordChars, *pStr ) && + if( lcl_IsInAsciiArr( "-'", *pStr ) && // These characters are allowed in words pWordStt - 1 == pStr && // Installation at beginning of paragraph. Replaced < by <= (#i38971#) (pStart + 1) <= pStr && diff --git a/editeng/source/uno/unonrule.cxx b/editeng/source/uno/unonrule.cxx index 313d5928f760..1970f5fb2c39 100644 --- a/editeng/source/uno/unonrule.cxx +++ b/editeng/source/uno/unonrule.cxx @@ -150,9 +150,6 @@ Reference< XCloneable > SAL_CALL SvxUnoNumberingRules::createClone( ) throw (Ru return new SvxUnoNumberingRules(maRule); } -// XServiceInfo -const char pSvxUnoNumberingRulesService[] = "com.sun.star.text.NumberingRules"; - OUString SAL_CALL SvxUnoNumberingRules::getImplementationName( ) throw(RuntimeException, std::exception) { return OUString( "SvxUnoNumberingRules" ); @@ -165,7 +162,7 @@ sal_Bool SAL_CALL SvxUnoNumberingRules::supportsService( const OUString& Service Sequence< OUString > SAL_CALL SvxUnoNumberingRules::getSupportedServiceNames( ) throw(RuntimeException, std::exception) { - OUString aService( pSvxUnoNumberingRulesService ); + OUString aService( "com.sun.star.text.NumberingRules" ); Sequence< OUString > aSeq( &aService, 1 ); return aSeq; } -- cgit