summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-19 11:33:24 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-19 13:26:09 +0200
commitcbe944e323edb20f958bb46ea644de659b75382e (patch)
treec51e99e46e447f139fbbc48ff0d9aa8885e70a82 /sdext
parent2f6af46dedcf3ad5ec3a40876dbf1120eec359b6 (diff)
Catch inadvertent uses of OUString(sal_Unicode) ctor
...with numeric values that are not meant to be characters. Inspired by <https://gerrit.libreoffice.org/#/c/16339/> "OUString: add constructor from single Unicode code point" and ecaf1cb3861c1b519a1495487fc796884cf37b92 "seems to be what was meant." Found e46e8d19458fd64ff20b1013e5eeabd07e62379c "Shall this produce a string representation of a number?" and f2a0e4032734d6be635f14ade3dea499c29ec6c2 "Don't truncate a UTF-32 code point to a UTF-16 code unit." (LIBO_INTERNAL_ONLY mostly because it uses a C++11 delegating ctor for simplicity, but also because it requires mild modifications to client code, see additional changes in this commit and some other recent commits.) Change-Id: I8a156f01d1b772c6052d7afaa088ae13ed234e2b
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/pdfimport/tree/drawtreevisiting.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/pdfimport/tree/drawtreevisiting.cxx b/sdext/source/pdfimport/tree/drawtreevisiting.cxx
index 6c7235d87943..4d262ca23336 100644
--- a/sdext/source/pdfimport/tree/drawtreevisiting.cxx
+++ b/sdext/source/pdfimport/tree/drawtreevisiting.cxx
@@ -95,9 +95,9 @@ void DrawXmlEmitter::visit( TextElement& elem, const std::list< Element* >::cons
if( elem.Text.isEmpty() )
return;
- OUString strSpace(32);
- OUString strNbSpace(160);
- OUString tabSpace(0x09);
+ OUString strSpace(sal_Unicode(32));
+ OUString strNbSpace(sal_Unicode(160));
+ OUString tabSpace(sal_Unicode(0x09));
PropertyMap aProps;
if( elem.StyleId != -1 )
{