diff options
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/helper.cxx | 2 |
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; } |