Improved loplugin:stringconstant (now that GCC 7 supports it): i18npool
Change-Id: Icc5871d548fd7795936e58ff73b9d6fa7eeb6414 Reviewed-on: https://gerrit.libreoffice.org/76670 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
@@ -617,7 +617,7 @@ BreakIteratorImpl::getLocaleSpecificBreakIterator(const Locale& rLocale)
|
||||
OUString SAL_CALL
|
||||
BreakIteratorImpl::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.BreakIterator");
|
||||
return "com.sun.star.i18n.BreakIterator";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -353,7 +353,7 @@ CalendarImpl::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativ
|
||||
OUString SAL_CALL
|
||||
CalendarImpl::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.CalendarImpl");
|
||||
return "com.sun.star.i18n.CalendarImpl";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -276,7 +276,7 @@ ParseResult SAL_CALL cclass_Unicode::parsePredefinedToken(
|
||||
|
||||
OUString SAL_CALL cclass_Unicode::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.CharacterClassification_Unicode");
|
||||
return "com.sun.star.i18n.CharacterClassification_Unicode";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL cclass_Unicode::supportsService(const OUString& rServiceName)
|
||||
|
@@ -190,7 +190,7 @@ CharacterClassificationImpl::getLocaleSpecificCharacterClassification(const Loca
|
||||
OUString SAL_CALL
|
||||
CharacterClassificationImpl::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.CharacterClassification");
|
||||
return "com.sun.star.i18n.CharacterClassification";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -66,7 +66,7 @@ UnoScriptTypeDetector::endOfCTLScriptType( const OUString& Text, sal_Int32 nPos
|
||||
OUString SAL_CALL
|
||||
UnoScriptTypeDetector::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.ScriptTypeDetector");
|
||||
return "com.sun.star.i18n.ScriptTypeDetector";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -77,7 +77,7 @@ const sal_Char cChapCollator[] = "com.sun.star.i18n.ChapterCollator";
|
||||
OUString SAL_CALL
|
||||
ChapterCollator::getImplementationName()
|
||||
{
|
||||
return OUString(cChapCollator);
|
||||
return cChapCollator;
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -208,7 +208,7 @@ CollatorImpl::loadCachedCollator(const lang::Locale& rLocale, const OUString& rS
|
||||
|
||||
OUString SAL_CALL CollatorImpl::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.Collator");
|
||||
return "com.sun.star.i18n.Collator";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL CollatorImpl::supportsService(const OUString& rServiceName)
|
||||
|
@@ -400,7 +400,7 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString& rAlgorithm, const lang::
|
||||
OUString SAL_CALL
|
||||
Collator_Unicode::getImplementationName()
|
||||
{
|
||||
return OUString(implementationName);
|
||||
return implementationName;
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -1108,7 +1108,7 @@ OUString DefaultNumberingProvider::getNumberingIdentifier( sal_Int16 nNumberingT
|
||||
|
||||
OUString DefaultNumberingProvider::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.text.DefaultNumberingProvider");
|
||||
return "com.sun.star.text.DefaultNumberingProvider";
|
||||
}
|
||||
|
||||
sal_Bool DefaultNumberingProvider::supportsService(const OUString& rServiceName)
|
||||
|
@@ -175,7 +175,7 @@ OUString SAL_CALL IndexEntrySupplier::getIndexFollowPageWord( sal_Bool bMorePage
|
||||
OUString SAL_CALL
|
||||
IndexEntrySupplier::getImplementationName()
|
||||
{
|
||||
return OUString( implementationName );
|
||||
return implementationName;
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -1575,7 +1575,7 @@ sal_Bool OutlineNumbering::hasElements( )
|
||||
OUString SAL_CALL
|
||||
LocaleDataImpl::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.LocaleDataImpl");
|
||||
return "com.sun.star.i18n.LocaleDataImpl";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL LocaleDataImpl::supportsService(const OUString& rServiceName)
|
||||
|
@@ -1204,7 +1204,7 @@ static const sal_Char implementationName[] = "com.sun.star.i18n.NativeNumberSupp
|
||||
|
||||
OUString SAL_CALL NativeNumberSupplierService::getImplementationName()
|
||||
{
|
||||
return OUString(implementationName);
|
||||
return implementationName;
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -172,11 +172,11 @@ NumberFormatCodeMapper::mapElementTypeShortToString(sal_Int16 formatType)
|
||||
switch ( formatType )
|
||||
{
|
||||
case css::i18n::KNumberFormatType::SHORT :
|
||||
return OUString( "short" );
|
||||
return "short";
|
||||
case css::i18n::KNumberFormatType::MEDIUM :
|
||||
return OUString( "medium" );
|
||||
return "medium";
|
||||
case css::i18n::KNumberFormatType::LONG :
|
||||
return OUString( "long" );
|
||||
return "long";
|
||||
}
|
||||
return OUString();
|
||||
}
|
||||
@@ -200,21 +200,21 @@ NumberFormatCodeMapper::mapElementUsageShortToString(sal_Int16 formatUsage)
|
||||
switch ( formatUsage )
|
||||
{
|
||||
case css::i18n::KNumberFormatUsage::DATE :
|
||||
return OUString( "DATE" );
|
||||
return "DATE";
|
||||
case css::i18n::KNumberFormatUsage::TIME :
|
||||
return OUString( "TIME" );
|
||||
return "TIME";
|
||||
case css::i18n::KNumberFormatUsage::DATE_TIME :
|
||||
return OUString( "DATE_TIME" );
|
||||
return "DATE_TIME";
|
||||
case css::i18n::KNumberFormatUsage::FIXED_NUMBER :
|
||||
return OUString( "FIXED_NUMBER" );
|
||||
return "FIXED_NUMBER";
|
||||
case css::i18n::KNumberFormatUsage::FRACTION_NUMBER :
|
||||
return OUString( "FRACTION_NUMBER" );
|
||||
return "FRACTION_NUMBER";
|
||||
case css::i18n::KNumberFormatUsage::PERCENT_NUMBER :
|
||||
return OUString( "PERCENT_NUMBER" );
|
||||
return "PERCENT_NUMBER";
|
||||
case css::i18n::KNumberFormatUsage::CURRENCY :
|
||||
return OUString( "CURRENCY" );
|
||||
return "CURRENCY";
|
||||
case css::i18n::KNumberFormatUsage::SCIENTIFIC_NUMBER :
|
||||
return OUString( "SCIENTIFIC_NUMBER" );
|
||||
return "SCIENTIFIC_NUMBER";
|
||||
}
|
||||
return OUString();
|
||||
}
|
||||
@@ -247,7 +247,7 @@ NumberFormatCodeMapper::mapElementUsageStringToShort(const OUString& formatUsage
|
||||
OUString SAL_CALL
|
||||
NumberFormatCodeMapper::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.NumberFormatCodeMapper");
|
||||
return "com.sun.star.i18n.NumberFormatCodeMapper";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL NumberFormatCodeMapper::supportsService(const OUString& rServiceName)
|
||||
|
@@ -138,7 +138,7 @@ const sal_Char cOrdinalSuffix[] = "com.sun.star.i18n.OrdinalSuffix";
|
||||
|
||||
OUString SAL_CALL OrdinalSuffixService::getImplementationName()
|
||||
{
|
||||
return OUString(cOrdinalSuffix);
|
||||
return cOrdinalSuffix;
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL OrdinalSuffixService::supportsService( const OUString& rServiceName)
|
||||
|
@@ -1526,7 +1526,7 @@ static uno::Sequence< OUString > getServiceName_Static()
|
||||
|
||||
static OUString getImplementationName_Static()
|
||||
{
|
||||
return OUString( cSearchImpl );
|
||||
return cSearchImpl;
|
||||
}
|
||||
|
||||
OUString SAL_CALL
|
||||
|
@@ -104,7 +104,7 @@ TextConversionImpl::getLocaleSpecificTextConversion(const Locale& rLocale)
|
||||
OUString SAL_CALL
|
||||
TextConversionImpl::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.TextConversion");
|
||||
return "com.sun.star.i18n.TextConversion";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
@@ -638,7 +638,7 @@ TransliterationImpl::loadModuleByName( const OUString& implName,
|
||||
OUString SAL_CALL
|
||||
TransliterationImpl::getImplementationName()
|
||||
{
|
||||
return OUString("com.sun.star.i18n.Transliteration");
|
||||
return "com.sun.star.i18n.Transliteration";
|
||||
}
|
||||
|
||||
sal_Bool SAL_CALL
|
||||
|
Reference in New Issue
Block a user