diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-03-26 07:58:51 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-03-26 07:58:51 +0000 |
commit | 5700edc97f0349f8d3160b78603fffc6c7b390a0 (patch) | |
tree | 8b4c4d3a229a86b56ccf65c9403e257a81c48924 /lingucomponent/source/languageguessing/guesslang.cxx | |
parent | 3a306a00279861cb7c8b180b6bc812db92c5bcf6 (diff) |
INTEGRATION: CWS tl51_DEV300 (1.5.28); FILE MERGED
2008/02/25 09:12:47 tl 1.5.28.1: #i86307# source of assertion fixed
Diffstat (limited to 'lingucomponent/source/languageguessing/guesslang.cxx')
-rw-r--r-- | lingucomponent/source/languageguessing/guesslang.cxx | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/lingucomponent/source/languageguessing/guesslang.cxx b/lingucomponent/source/languageguessing/guesslang.cxx index 8baa14296..4de563467 100644 --- a/lingucomponent/source/languageguessing/guesslang.cxx +++ b/lingucomponent/source/languageguessing/guesslang.cxx @@ -5,9 +5,9 @@ * * $RCSfile: guesslang.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: hr $ $Date: 2007-11-01 10:54:35 $ + * last change: $Author: obo $ $Date: 2008-03-26 08:58:51 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -79,6 +79,8 @@ namespace css = ::com::sun::star; //================================================================================================== +#define A2OU(x) ::rtl::OUString::createFromAscii( x ) + #define SERVICENAME "com.sun.star.linguistic2.LanguageGuessing" #define IMPLNAME "com.sun.star.lingu2.LanguageGuessing" @@ -86,13 +88,13 @@ namespace css = ::com::sun::star; static Sequence< OUString > getSupportedServiceNames_LangGuess_Impl() { Sequence<OUString> names(1); - names[0] = OUString(RTL_CONSTASCII_USTRINGPARAM(SERVICENAME)); + names[0] = A2OU( SERVICENAME ); return names; } static OUString getImplementationName_LangGuess_Impl() { - return OUString( RTL_CONSTASCII_USTRINGPARAM(IMPLNAME) ); + return A2OU( IMPLNAME ); } static osl::Mutex & GetLangGuessMutex() @@ -211,8 +213,8 @@ Sequence< com::sun::star::lang::Locale > SAL_CALL LangGuess_Impl::guessLanguages for(int i = 0; i < gs.size() ; i++ ){ com::sun::star::lang::Locale current_aRes; - current_aRes.Language = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].getLanguage().c_str())); - current_aRes.Country = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].getCountry().c_str())); + current_aRes.Language = A2OU( gs[i].getLanguage().c_str() ); + current_aRes.Country = A2OU( gs[i].getCountry().c_str() ); pRes[i] = current_aRes; } @@ -275,8 +277,8 @@ uno::Sequence< Locale > SAL_CALL LangGuess_Impl::getAvailableLanguages( ) for(size_t i = 0; i < gs.size() ; i++ ){ com::sun::star::lang::Locale current_aRes; - current_aRes.Language = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].GetLanguage().c_str())); - current_aRes.Country = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].GetCountry().c_str())); + current_aRes.Language = A2OU( gs[i].GetLanguage().c_str() ); + current_aRes.Country = A2OU( gs[i].GetCountry().c_str() ); pRes[i] = current_aRes; } @@ -297,8 +299,8 @@ uno::Sequence< Locale > SAL_CALL LangGuess_Impl::getEnabledLanguages( ) for(size_t i = 0; i < gs.size() ; i++ ){ com::sun::star::lang::Locale current_aRes; - current_aRes.Language = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].GetLanguage().c_str())); - current_aRes.Country = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].GetCountry().c_str())); + current_aRes.Language = A2OU( gs[i].GetLanguage().c_str() ); + current_aRes.Country = A2OU( gs[i].GetCountry().c_str() ); pRes[i] = current_aRes; } @@ -319,8 +321,8 @@ uno::Sequence< Locale > SAL_CALL LangGuess_Impl::getDisabledLanguages( ) for(size_t i = 0; i < gs.size() ; i++ ){ com::sun::star::lang::Locale current_aRes; - current_aRes.Language = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].GetLanguage().c_str())); - current_aRes.Country = OUString(RTL_CONSTASCII_USTRINGPARAM(gs[i].GetCountry().c_str())); + current_aRes.Language = A2OU( gs[i].GetLanguage().c_str() ); + current_aRes.Country = A2OU( gs[i].GetCountry().c_str() ); pRes[i] = current_aRes; } @@ -380,7 +382,7 @@ OUString SAL_CALL LangGuess_Impl::getImplementationName( ) throw(RuntimeException) { osl::MutexGuard aGuard( GetLangGuessMutex() ); - return OUString( RTL_CONSTASCII_USTRINGPARAM(IMPLNAME) ); + return A2OU( IMPLNAME ); } //************************************************************************* @@ -407,7 +409,7 @@ Sequence<OUString> SAL_CALL LangGuess_Impl::getSupportedServiceNames( ) //************************************************************************* Sequence<OUString> SAL_CALL LangGuess_Impl::getSupportedServiceNames_Static( ) { - OUString aName( RTL_CONSTASCII_USTRINGPARAM(SERVICENAME) ); + OUString aName( A2OU( SERVICENAME ) ); return Sequence< OUString >( &aName, 1 ); } |