summaryrefslogtreecommitdiff
path: root/include/typelib
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2020-09-11 22:05:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-09-12 13:36:42 +0200
commit04203a26757d26814a18c3251d1a97f6ded64a62 (patch)
tree80962f43d3b46e8670ad49068a1a6e8459c22f39 /include/typelib
parent05d5062dca095f2e53de26db41edeb0b1279138b (diff)
Replace remaining uses of sal_Char
+ remove sal_Char check on compilerplugins Change-Id: I0f7da14e620f0c3d031d038aa8345ba4080fb3e9 Change-Id: Ia6dba4f27b47bc9e0c89159182ad80a5aee17166 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102499 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/typelib')
-rw-r--r--include/typelib/typedescription.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/typelib/typedescription.h b/include/typelib/typedescription.h
index 39ddbd702bd4..3b74b568778e 100644
--- a/include/typelib/typedescription.h
+++ b/include/typelib/typedescription.h
@@ -777,7 +777,7 @@ CPPU_DLLPUBLIC void SAL_CALL typelib_typedescriptionreference_new(
CPPU_DLLPUBLIC void SAL_CALL typelib_typedescriptionreference_newByAsciiName(
typelib_TypeDescriptionReference ** ppTDR,
typelib_TypeClass eTypeClass,
- const sal_Char * pTypeName )
+ const char * pTypeName )
SAL_THROW_EXTERN_C();
/** Increments reference count of type description reference.
@@ -870,7 +870,7 @@ CPPU_DLLPUBLIC typelib_TypeDescriptionReference ** SAL_CALL typelib_static_type_
*/
CPPU_DLLPUBLIC void SAL_CALL typelib_static_type_init(
typelib_TypeDescriptionReference ** ppRef,
- typelib_TypeClass eTypeClass, const sal_Char * pTypeName )
+ typelib_TypeClass eTypeClass, const char * pTypeName )
SAL_THROW_EXTERN_C();
/** Inits static sequence type reference. Thread synchronizes on typelib init mutex.
@@ -898,7 +898,7 @@ CPPU_DLLPUBLIC void SAL_CALL typelib_static_sequence_type_init(
*/
CPPU_DLLPUBLIC void SAL_CALL typelib_static_compound_type_init(
typelib_TypeDescriptionReference ** ppRef,
- typelib_TypeClass eTypeClass, const sal_Char * pTypeName,
+ typelib_TypeClass eTypeClass, const char * pTypeName,
typelib_TypeDescriptionReference * pBaseType,
sal_Int32 nMembers, typelib_TypeDescriptionReference ** ppMembers )
SAL_THROW_EXTERN_C();
@@ -919,7 +919,7 @@ CPPU_DLLPUBLIC void SAL_CALL typelib_static_compound_type_init(
@since UDK 3.2.0
*/
CPPU_DLLPUBLIC void SAL_CALL typelib_static_struct_type_init(
- typelib_TypeDescriptionReference ** ppRef, const sal_Char * pTypeName,
+ typelib_TypeDescriptionReference ** ppRef, const char * pTypeName,
typelib_TypeDescriptionReference * pBaseType,
sal_Int32 nMembers, typelib_TypeDescriptionReference ** ppMembers,
sal_Bool const * pParameterizedTypes )
@@ -933,7 +933,7 @@ CPPU_DLLPUBLIC void SAL_CALL typelib_static_struct_type_init(
*/
CPPU_DLLPUBLIC void SAL_CALL typelib_static_interface_type_init(
typelib_TypeDescriptionReference ** ppRef,
- const sal_Char * pTypeName,
+ const char * pTypeName,
typelib_TypeDescriptionReference * pBaseType )
SAL_THROW_EXTERN_C();
@@ -949,7 +949,7 @@ CPPU_DLLPUBLIC void SAL_CALL typelib_static_interface_type_init(
*/
CPPU_DLLPUBLIC void SAL_CALL typelib_static_mi_interface_type_init(
typelib_TypeDescriptionReference ** ppRef,
- const sal_Char * pTypeName,
+ const char * pTypeName,
sal_Int32 nBaseTypes,
typelib_TypeDescriptionReference ** ppBaseTypes )
SAL_THROW_EXTERN_C();
@@ -962,7 +962,7 @@ CPPU_DLLPUBLIC void SAL_CALL typelib_static_mi_interface_type_init(
*/
CPPU_DLLPUBLIC void SAL_CALL typelib_static_enum_type_init(
typelib_TypeDescriptionReference ** ppRef,
- const sal_Char * pTypeName,
+ const char * pTypeName,
sal_Int32 nDefaultValue )
SAL_THROW_EXTERN_C();