diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-24 10:36:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-24 17:28:50 +0100 |
commit | 56063d30628ee2497a7c559d7de42d26e9cfc8ae (patch) | |
tree | 2a48a93cfee5c6d1e7e942361b5d040ac04ce663 /unoxml/inc | |
parent | 122598af564082786f01b4eafdb9f09f0cffdf5f (diff) |
sal_Char->char in unoxml
Change-Id: Ie14ea8349e5dc698a11b3447429b3ca7cbab9bb3
Reviewed-on: https://gerrit.libreoffice.org/85774
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unoxml/inc')
-rw-r--r-- | unoxml/inc/node.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/inc/node.hxx b/unoxml/inc/node.hxx index e35ab3aafda5..3637c47cd004 100644 --- a/unoxml/inc/node.hxx +++ b/unoxml/inc/node.hxx @@ -83,8 +83,8 @@ namespace DOM void pushContext(Context& io_rContext); void popContext(Context& io_rContext); - sal_Int32 getTokenWithPrefix( const Context& rContext, const sal_Char* xPrefix, const sal_Char* xName ); - sal_Int32 getToken( const Context& rContext, const sal_Char* xName ); + sal_Int32 getTokenWithPrefix( const Context& rContext, const char* xPrefix, const char* xName ); + sal_Int32 getToken( const Context& rContext, const char* xName ); /// add namespaces on this node to context void addNamespaces(Context& io_rContext, xmlNodePtr pNode); |