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/source/stringresource | |
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/source/stringresource')
-rw-r--r-- | scripting/source/stringresource/stringresource.cxx | 4 | ||||
-rw-r--r-- | scripting/source/stringresource/stringresource.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
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 |