diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 16:58:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 19:27:42 +0100 |
commit | 1376f86f3fdfb80008687d8b5e8db2b5434b9d7e (patch) | |
tree | aaf2bce8628387b618aaad2d5e6e2e879d902a98 /scripting | |
parent | 935763841f8f4423a5afca5da15c874bee02e0d5 (diff) |
sal_Char->char in scaddins..sdext
Change-Id: If2456800ace3696c2582e19a4c8612fee7d77f90
Reviewed-on: https://gerrit.libreoffice.org/85700
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/basprov/basprov.cxx | 2 | ||||
-rw-r--r-- | scripting/source/dlgprov/dlgprov.cxx | 2 | ||||
-rw-r--r-- | scripting/source/protocolhandler/scripthandler.cxx | 2 | ||||
-rw-r--r-- | scripting/source/provider/MasterScriptProvider.cxx | 2 | ||||
-rw-r--r-- | scripting/source/stringresource/stringresource.cxx | 4 | ||||
-rw-r--r-- | scripting/source/stringresource/stringresource.hxx | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/scripting/source/basprov/basprov.cxx b/scripting/source/basprov/basprov.cxx index f4cad3372572..ad990dbd4863 100644 --- a/scripting/source/basprov/basprov.cxx +++ b/scripting/source/basprov/basprov.cxx @@ -517,7 +517,7 @@ namespace basprov extern "C" { SAL_DLLPUBLIC_EXPORT void * basprov_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, + const char * pImplName, void * pServiceManager, void * pRegistryKey ) { return ::cppu::component_getFactoryHelper( diff --git a/scripting/source/dlgprov/dlgprov.cxx b/scripting/source/dlgprov/dlgprov.cxx index ef5673bafbfd..8b9a289b95e6 100644 --- a/scripting/source/dlgprov/dlgprov.cxx +++ b/scripting/source/dlgprov/dlgprov.cxx @@ -753,7 +753,7 @@ namespace dlgprov extern "C" { SAL_DLLPUBLIC_EXPORT void * dlgprov_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, + const char * pImplName, void * pServiceManager, void * pRegistryKey ) { return ::cppu::component_getFactoryHelper( diff --git a/scripting/source/protocolhandler/scripthandler.cxx b/scripting/source/protocolhandler/scripthandler.cxx index c167fb3c42d8..3b3fe4e307ef 100644 --- a/scripting/source/protocolhandler/scripthandler.cxx +++ b/scripting/source/protocolhandler/scripthandler.cxx @@ -469,7 +469,7 @@ const Reference< XMultiServiceFactory >& xServiceManager ) extern "C" { - SAL_DLLPUBLIC_EXPORT void* protocolhandler_component_getFactory( const sal_Char * pImplementationName , + SAL_DLLPUBLIC_EXPORT void* protocolhandler_component_getFactory( const char * pImplementationName , void * pServiceManager , void * ) { diff --git a/scripting/source/provider/MasterScriptProvider.cxx b/scripting/source/provider/MasterScriptProvider.cxx index 41d64c0704f2..75cf2ff33fbd 100644 --- a/scripting/source/provider/MasterScriptProvider.cxx +++ b/scripting/source/provider/MasterScriptProvider.cxx @@ -757,7 +757,7 @@ extern "C" * @return a component factory */ SAL_DLLPUBLIC_EXPORT void * scriptframe_component_getFactory( - const sal_Char * pImplName, + const char * pImplName, void * pServiceManager, void * pRegistryKey ) { diff --git a/scripting/source/stringresource/stringresource.cxx b/scripting/source/stringresource/stringresource.cxx index 266737de056a..e6daf55f28db 100644 --- a/scripting/source/stringresource/stringresource.cxx +++ b/scripting/source/stringresource/stringresource.cxx @@ -283,7 +283,7 @@ Sequence< Locale > StringResourceImpl::getLocales( ) // XStringResourceManager -void StringResourceImpl::implCheckReadOnly( const sal_Char* pExceptionMsg ) +void StringResourceImpl::implCheckReadOnly( const char* pExceptionMsg ) { if( m_bReadOnly ) { @@ -2694,7 +2694,7 @@ static const struct ::cppu::ImplementationEntry s_component_entries [] = extern "C" { SAL_DLLPUBLIC_EXPORT void * stringresource_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, + const char * pImplName, void * pServiceManager, void * pRegistryKey ) { return ::cppu::component_getFactoryHelper( diff --git a/scripting/source/stringresource/stringresource.hxx b/scripting/source/stringresource/stringresource.hxx index 5e65f06f09b3..81c558fd7b99 100644 --- a/scripting/source/stringresource/stringresource.hxx +++ b/scripting/source/stringresource/stringresource.hxx @@ -114,7 +114,7 @@ protected: // Checks read only status and throws exception if it's true /// @throws css::lang::NoSupportException - void implCheckReadOnly( const sal_Char* pExceptionMsg ); + void implCheckReadOnly( const char* pExceptionMsg ); // Returns the LocalItem for a given locale, if it exists, otherwise NULL // This method compares the locales exactly, no closest match search is performed |