diff options
5 files changed, 7 insertions, 7 deletions
diff --git a/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx b/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx index 46cf4f4f84c6..d5103b8e7aa5 100644 --- a/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx +++ b/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx @@ -125,7 +125,7 @@ private: inline OUString Hyphenator::getImplementationName_Static() throw() { - return OUString( "org.openoffice.lingu.LibHnjHyphenator" ); + return "org.openoffice.lingu.LibHnjHyphenator"; } #endif diff --git a/lingucomponent/source/languageguessing/guesslang.cxx b/lingucomponent/source/languageguessing/guesslang.cxx index db8d67eaa6c1..5295a4e2902c 100644 --- a/lingucomponent/source/languageguessing/guesslang.cxx +++ b/lingucomponent/source/languageguessing/guesslang.cxx @@ -63,7 +63,7 @@ static Sequence< OUString > getSupportedServiceNames_LangGuess_Impl() static OUString getImplementationName_LangGuess_Impl() { - return OUString( IMPLNAME ); + return IMPLNAME; } static osl::Mutex & GetLangGuessMutex() @@ -313,7 +313,7 @@ void SAL_CALL LangGuess_Impl::enableLanguages( OUString SAL_CALL LangGuess_Impl::getImplementationName( ) { - return OUString( IMPLNAME ); + return IMPLNAME; } sal_Bool SAL_CALL LangGuess_Impl::supportsService( const OUString& ServiceName ) diff --git a/lingucomponent/source/numbertext/numbertext.cxx b/lingucomponent/source/numbertext/numbertext.cxx index 58896ea41bf2..fea2cb50e2c7 100644 --- a/lingucomponent/source/numbertext/numbertext.cxx +++ b/lingucomponent/source/numbertext/numbertext.cxx @@ -58,7 +58,7 @@ static Sequence<OUString> getSupportedServiceNames_NumberText_Impl() return names; } -static OUString getImplementationName_NumberText_Impl() { return OUString(IMPLNAME); } +static OUString getImplementationName_NumberText_Impl() { return IMPLNAME; } static osl::Mutex& GetNumberTextMutex() { @@ -158,7 +158,7 @@ uno::Sequence<Locale> SAL_CALL NumberText_Impl::getAvailableLanguages() return aRes; } -OUString SAL_CALL NumberText_Impl::getImplementationName() { return OUString(IMPLNAME); } +OUString SAL_CALL NumberText_Impl::getImplementationName() { return IMPLNAME; } sal_Bool SAL_CALL NumberText_Impl::supportsService(const OUString& ServiceName) { diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.hxx b/lingucomponent/source/spellcheck/spell/sspellimp.hxx index a500f1527897..3c55d3c9fcf7 100644 --- a/lingucomponent/source/spellcheck/spell/sspellimp.hxx +++ b/lingucomponent/source/spellcheck/spell/sspellimp.hxx @@ -122,7 +122,7 @@ public: inline OUString SpellChecker::getImplementationName_Static() throw() { - return OUString( "org.openoffice.lingu.MySpellSpellChecker" ); + return "org.openoffice.lingu.MySpellSpellChecker"; } #endif diff --git a/lingucomponent/source/thesaurus/libnth/nthesimp.hxx b/lingucomponent/source/thesaurus/libnth/nthesimp.hxx index 394aefada281..4fba8f5c226e 100644 --- a/lingucomponent/source/thesaurus/libnth/nthesimp.hxx +++ b/lingucomponent/source/thesaurus/libnth/nthesimp.hxx @@ -132,7 +132,7 @@ private: inline OUString Thesaurus::getImplementationName_Static() throw() { - return OUString( "org.openoffice.lingu.new.Thesaurus" ); + return "org.openoffice.lingu.new.Thesaurus"; } #endif |