summaryrefslogtreecommitdiff
path: root/chart2/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-08-28 09:47:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-08-29 11:44:31 +0000
commit2c10714426cc813c36aa82e4870b7b51c5c03050 (patch)
treedecd4f4343fb19a1e058c034e32b03be17cd9547 /chart2/inc
parent0c8fa58a2d73702770687ed15b98822d09f96ac3 (diff)
Make OUStringLiteral1 a wrapper around UTF-16 instead of just ASCII
...not merely an ASCII character Change-Id: Id2b381b35fe3a15574728ed973d60263dfef7249 Reviewed-on: https://gerrit.libreoffice.org/28446 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'chart2/inc')
-rw-r--r--chart2/inc/SpecialUnicodes.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/inc/SpecialUnicodes.hxx b/chart2/inc/SpecialUnicodes.hxx
index db6e3b65fdb5..22ddc35b5e39 100644
--- a/chart2/inc/SpecialUnicodes.hxx
+++ b/chart2/inc/SpecialUnicodes.hxx
@@ -10,7 +10,7 @@
#ifndef INCLUDED_CHART2_INC_SPECIALUNICODES_HXX
#define INCLUDED_CHART2_INC_SPECIALUNICODES_HXX
-const OUString aMinusSign ( sal_Unicode (0x2212) );
+const sal_Unicode aMinusSign = 0x2212;
const OUString aNewLine ("\n");
const OUString aHashString ("###");
const sal_Unicode aSuperscriptFigures[10]={ 0x2070, 0x00B9, 0x00B2, 0x00B3, 0x2074, 0x2075, 0x2076, 0x2077, 0x2078, 0x2079 };