summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 09:46:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 09:56:51 +0100
commitc1a4554c67fc975ead3f79b3511a76617e4615b3 (patch)
treede4da1c1ee26954ee76d2ffe8061ba86f44e5547 /l10ntools
parent02b24d77476f93887691dde564351d6f8b770b8f (diff)
sal_Char->char in idlc..linguistic
Change-Id: Ib30fe34123ad7e5d892e8db9c742e08c4ca8fcd2 Reviewed-on: https://gerrit.libreoffice.org/85477 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/helper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/helper.cxx b/l10ntools/source/helper.cxx
index 84b454bde587..b842755c27f6 100644
--- a/l10ntools/source/helper.cxx
+++ b/l10ntools/source/helper.cxx
@@ -137,7 +137,7 @@ bool isWellFormedXML( OString const & text )
OString xmlStrToOString( const xmlChar* pString )
{
xmlChar* pTemp = xmlStrdup( pString );
- OString sResult = reinterpret_cast<sal_Char*>( pTemp );
+ OString sResult = reinterpret_cast<char*>( pTemp );
xmlFree( pTemp );
return sResult;
}