summaryrefslogtreecommitdiff
path: root/chart2/source/tools/StatisticsHelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/tools/StatisticsHelper.cxx')
-rw-r--r--chart2/source/tools/StatisticsHelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/tools/StatisticsHelper.cxx b/chart2/source/tools/StatisticsHelper.cxx
index 99d9e4267835..724e01c75670 100644
--- a/chart2/source/tools/StatisticsHelper.cxx
+++ b/chart2/source/tools/StatisticsHelper.cxx
@@ -81,13 +81,13 @@ Reference< chart2::data::XLabeledDataSequence > lcl_getErrorBarLabeledSequence(
{
OUStringBuffer aRole( "error-bars-");
if( bYError )
- aRole.append( sal_Unicode( 'y' ));
+ aRole.append( 'y');
else
- aRole.append( sal_Unicode( 'x' ));
+ aRole.append( 'x');
OUString aPlainRole = aRole.makeStringAndClear();
aRole.append( aPlainRole );
- aRole.append( sal_Unicode( '-' ));
+ aRole.append( '-' );
if( bPositiveValue )
aRole = aRole.appendAscii( "positive" );