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 /scaddins/source/pricing | |
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 'scaddins/source/pricing')
-rw-r--r-- | scaddins/source/pricing/pricing.cxx | 6 | ||||
-rw-r--r-- | scaddins/source/pricing/pricing.hxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/scaddins/source/pricing/pricing.cxx b/scaddins/source/pricing/pricing.cxx index 97d9401cdc1d..32f4414dd0a0 100644 --- a/scaddins/source/pricing/pricing.cxx +++ b/scaddins/source/pricing/pricing.cxx @@ -96,7 +96,7 @@ static uno::Reference< uno::XInterface > ScaPricingAddIn_CreateInstance( extern "C" { SAL_DLLPUBLIC_EXPORT void * pricing_component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) + const char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) { void* pRet = nullptr; @@ -130,8 +130,8 @@ ScaPricingAddIn::~ScaPricingAddIn() { } -static const sal_Char* pLang[] = { "de", "en" }; -static const sal_Char* pCoun[] = { "DE", "US" }; +static const char* pLang[] = { "de", "en" }; +static const char* pCoun[] = { "DE", "US" }; static const sal_uInt32 nNumOfLoc = SAL_N_ELEMENTS( pLang ); void ScaPricingAddIn::InitDefLocales() diff --git a/scaddins/source/pricing/pricing.hxx b/scaddins/source/pricing/pricing.hxx index 874a842a740e..1ce75c1756e1 100644 --- a/scaddins/source/pricing/pricing.hxx +++ b/scaddins/source/pricing/pricing.hxx @@ -57,7 +57,7 @@ enum class ScaCategory struct ScaFuncDataBase { - const sal_Char* pIntName; // internal name (get***) + const char* pIntName; // internal name (get***) const char* pUINameID; // resource ID to UI name const char** pDescrID; // resource ID to description, parameter names and ~ description // pCompName was originally meant to be able to load Excel documents that for |