summaryrefslogtreecommitdiff
path: root/helpcompiler
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 09:42:08 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 12:05:51 +0100
commit821bdf5f7980de0c67ac17f275d3d2e0710ec6a5 (patch)
tree2b801c3be46b3975804edeeae6b7ffea7508771e /helpcompiler
parent0c5f36e5f77e5b9cd155c29fd54c0878be31de0a (diff)
sal_Char->char in formula..i18npool
Change-Id: I765979f41842befcf25909944100d1caa97f81a8 Reviewed-on: https://gerrit.libreoffice.org/85476 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'helpcompiler')
-rw-r--r--helpcompiler/source/BasCodeTagger.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpcompiler/source/BasCodeTagger.cxx b/helpcompiler/source/BasCodeTagger.cxx
index 1b4797b403b9..deaaa0f5253d 100644
--- a/helpcompiler/source/BasCodeTagger.cxx
+++ b/helpcompiler/source/BasCodeTagger.cxx
@@ -134,7 +134,7 @@ void BasicCodeTagger::tagParagraph( xmlNodePtr paragraph )
}
//3. create new paragraph content
- OUString strLine( reinterpret_cast<const sal_Char*>(codeSnippet),
+ OUString strLine( reinterpret_cast<const char*>(codeSnippet),
strlen(reinterpret_cast<const char*>(codeSnippet)),
RTL_TEXTENCODING_UTF8 );
std::vector<HighlightPortion> portions;