diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-09-11 22:05:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-09-12 13:36:42 +0200 |
commit | 04203a26757d26814a18c3251d1a97f6ded64a62 (patch) | |
tree | 80962f43d3b46e8670ad49068a1a6e8459c22f39 /include/com/sun/star | |
parent | 05d5062dca095f2e53de26db41edeb0b1279138b (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/com/sun/star')
-rw-r--r-- | include/com/sun/star/uno/Type.h | 2 | ||||
-rw-r--r-- | include/com/sun/star/uno/Type.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/com/sun/star/uno/Type.h b/include/com/sun/star/uno/Type.h index 056f6ba5f379..c159ff3a06cc 100644 --- a/include/com/sun/star/uno/Type.h +++ b/include/com/sun/star/uno/Type.h @@ -86,7 +86,7 @@ public: @param eTypeClass type class of type @param pTypeName name of type */ - inline Type( TypeClass eTypeClass, const sal_Char * pTypeName ); + inline Type( TypeClass eTypeClass, const char * pTypeName ); /** Constructor: Type is (copy) constructed by given C type description reference. diff --git a/include/com/sun/star/uno/Type.hxx b/include/com/sun/star/uno/Type.hxx index 770734f99df3..fdf45431e515 100644 --- a/include/com/sun/star/uno/Type.hxx +++ b/include/com/sun/star/uno/Type.hxx @@ -50,7 +50,7 @@ inline Type::Type( TypeClass eTypeClass, const ::rtl::OUString & rTypeName ) ::typelib_typedescriptionreference_new( &_pType, static_cast<typelib_TypeClass>(eTypeClass), rTypeName.pData ); } -inline Type::Type( TypeClass eTypeClass, const sal_Char * pTypeName ) +inline Type::Type( TypeClass eTypeClass, const char * pTypeName ) : _pType( NULL ) { ::typelib_typedescriptionreference_newByAsciiName( &_pType, static_cast<typelib_TypeClass>(eTypeClass), pTypeName ); |