diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 12:02:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 20:37:44 +0100 |
commit | feb5df31d4c27d53746d0bb25b5ff06c466d9db7 (patch) | |
tree | 1a1be1b8948c87508ffc9f2512a208f70445a730 /comphelper/source/xml | |
parent | 4ea1f7363d68296219f371076a93d3e480289368 (diff) |
sal_Char->char in comphelper
Change-Id: I63488463f2255a013cb80a9318d22207cb0ed532
Reviewed-on: https://gerrit.libreoffice.org/85395
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper/source/xml')
-rw-r--r-- | comphelper/source/xml/xmltools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/xml/xmltools.cxx b/comphelper/source/xml/xmltools.cxx index 948ed64e370e..14809221d0e5 100644 --- a/comphelper/source/xml/xmltools.cxx +++ b/comphelper/source/xml/xmltools.cxx @@ -89,7 +89,7 @@ namespace comphelper encodeChaff(aChaff); - return OString(reinterpret_cast<const sal_Char*>(aChaff.data()), nLength); + return OString(reinterpret_cast<const char*>(aChaff.data()), nLength); } OString generateGUIDString() |