diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 09:46:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 09:56:51 +0100 |
commit | c1a4554c67fc975ead3f79b3511a76617e4615b3 (patch) | |
tree | de4da1c1ee26954ee76d2ffe8061ba86f44e5547 /lingucomponent | |
parent | 02b24d77476f93887691dde564351d6f8b770b8f (diff) |
sal_Char->char in idlc..linguistic
Change-Id: Ib30fe34123ad7e5d892e8db9c742e08c4ca8fcd2
Reviewed-on: https://gerrit.libreoffice.org/85477
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lingucomponent')
8 files changed, 8 insertions, 8 deletions
diff --git a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx index a16420844228..e6692a1d0b50 100644 --- a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx +++ b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx @@ -818,7 +818,7 @@ extern "C" { SAL_DLLPUBLIC_EXPORT void * hyphen_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) + const char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) { void * pRet = nullptr; if ( Hyphenator::getImplementationName_Static().equalsAscii( pImplName ) ) diff --git a/lingucomponent/source/languageguessing/guesslang.cxx b/lingucomponent/source/languageguessing/guesslang.cxx index 254abc882e8e..3e285b6909cc 100644 --- a/lingucomponent/source/languageguessing/guesslang.cxx +++ b/lingucomponent/source/languageguessing/guesslang.cxx @@ -348,7 +348,7 @@ extern "C" { SAL_DLLPUBLIC_EXPORT void * guesslang_component_getFactory( - sal_Char const * implName, void * xMgr, + char const * implName, void * xMgr, void * xRegistry ) { return ::cppu::component_getFactoryHelper( diff --git a/lingucomponent/source/lingutil/lingutil.cxx b/lingucomponent/source/lingutil/lingutil.cxx index 76c79aba698a..13f0cf1d31a6 100644 --- a/lingucomponent/source/lingutil/lingutil.cxx +++ b/lingucomponent/source/lingutil/lingutil.cxx @@ -272,7 +272,7 @@ void MergeNewStyleDicsAndOldStyleDics( } } -rtl_TextEncoding getTextEncodingFromCharset(const sal_Char* pCharset) +rtl_TextEncoding getTextEncodingFromCharset(const char* pCharset) { // default result: used to indicate that we failed to get the proper encoding rtl_TextEncoding eRet = RTL_TEXTENCODING_DONTKNOW; diff --git a/lingucomponent/source/lingutil/lingutil.hxx b/lingucomponent/source/lingutil/lingutil.hxx index c84d465af9cb..984b5e2e8902 100644 --- a/lingucomponent/source/lingutil/lingutil.hxx +++ b/lingucomponent/source/lingutil/lingutil.hxx @@ -50,7 +50,7 @@ void MergeNewStyleDicsAndOldStyleDics( std::vector< SvtLinguConfigDictionaryEntr //rtl_getTextEncodingFromUnixCharset with the addition of //ISCII-DEVANAGARI. On failure will return final fallback of //RTL_TEXTENCODING_ISO_8859_1 -rtl_TextEncoding getTextEncodingFromCharset(const sal_Char* pCharset); +rtl_TextEncoding getTextEncodingFromCharset(const char* pCharset); #endif diff --git a/lingucomponent/source/numbertext/numbertext.cxx b/lingucomponent/source/numbertext/numbertext.cxx index 8c388e6adb92..44149fa39d68 100644 --- a/lingucomponent/source/numbertext/numbertext.cxx +++ b/lingucomponent/source/numbertext/numbertext.cxx @@ -187,7 +187,7 @@ static const struct ::cppu::ImplementationEntry s_component_entries[] extern "C" { -SAL_DLLPUBLIC_EXPORT void* numbertext_component_getFactory(sal_Char const* implName, void* xMgr, +SAL_DLLPUBLIC_EXPORT void* numbertext_component_getFactory(char const* implName, void* xMgr, void* xRegistry) { return ::cppu::component_getFactoryHelper(implName, xMgr, xRegistry, s_component_entries); diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm index ef3d5decb013..1d6f84fcce78 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm +++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm @@ -651,7 +651,7 @@ extern "C" { SAL_DLLPUBLIC_EXPORT void * MacOSXSpell_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) + const char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) { void * pRet = nullptr; if ( MacSpellChecker::getImplementationName_Static().equalsAscii( pImplName ) ) diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx b/lingucomponent/source/spellcheck/spell/sspellimp.cxx index e6901af11577..60dcc350f07a 100644 --- a/lingucomponent/source/spellcheck/spell/sspellimp.cxx +++ b/lingucomponent/source/spellcheck/spell/sspellimp.cxx @@ -651,7 +651,7 @@ extern "C" { SAL_DLLPUBLIC_EXPORT void * spell_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) + const char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) { void * pRet = nullptr; if ( SpellChecker::getImplementationName_Static().equalsAscii( pImplName ) ) diff --git a/lingucomponent/source/thesaurus/libnth/nthesimp.cxx b/lingucomponent/source/thesaurus/libnth/nthesimp.cxx index cb15183964e7..7cab6c0770eb 100644 --- a/lingucomponent/source/thesaurus/libnth/nthesimp.cxx +++ b/lingucomponent/source/thesaurus/libnth/nthesimp.cxx @@ -581,7 +581,7 @@ Sequence< OUString > Thesaurus::getSupportedServiceNames_Static() extern "C" { SAL_DLLPUBLIC_EXPORT void * lnth_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) + const char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) { void * pRet = nullptr; if ( Thesaurus::getImplementationName_Static().equalsAscii( pImplName ) ) |