diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 13:29:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 19:17:57 +0100 |
commit | e994b3fc3b2c9b7d39a715fc4d9453e06434d457 (patch) | |
tree | 444fc710a7e31168bba36319f65a862d393c69e6 /include | |
parent | 7c18da2dc6963b6f3f74a72fc4f6a3eedd8f9eb7 (diff) |
sal_Char->char in remotebridges..sax
Change-Id: I6d32942960a5e997f16eb1301c45495661cd4cea
Reviewed-on: https://gerrit.libreoffice.org/85514
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/sax/fastattribs.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx index 7484a2491725..223bd868192d 100644 --- a/include/sax/fastattribs.hxx +++ b/include/sax/fastattribs.hxx @@ -83,8 +83,8 @@ public: maAttributeValues.reserve(nNumTokens+1); maAttributeTokens.reserve(nNumTokens); } - void add( sal_Int32 nToken, const sal_Char* pValue ); - void add( sal_Int32 nToken, const sal_Char* pValue, size_t nValueLength ); + void add( sal_Int32 nToken, const char* pValue ); + void add( sal_Int32 nToken, const char* pValue, size_t nValueLength ); void add( sal_Int32 nToken, const OString& rValue ); void addNS( sal_Int32 nNamespaceToken, sal_Int32 nToken, const OString& rValue ); // note: rQName is *namespace-prefixed* @@ -200,7 +200,7 @@ public: FastAttributeIter find( sal_Int32 nToken ) const; private: - sal_Char *mpChunk; ///< buffer to store all attribute values - null terminated strings + char *mpChunk; ///< buffer to store all attribute values - null terminated strings sal_Int32 mnChunkLength; ///< size of allocated memory for mpChunk // maAttributeValues stores pointers, relative to mpChunk, for each attribute value string // length of the string is maAttributeValues[n+1] - maAttributeValues[n] - 1 |