summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgreader.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/svg/svgreader.cxx')
-rw-r--r--filter/source/svg/svgreader.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/svg/svgreader.cxx b/filter/source/svg/svgreader.cxx
index cd4a3931a0b6..b1c59164028f 100644
--- a/filter/source/svg/svgreader.cxx
+++ b/filter/source/svg/svgreader.cxx
@@ -400,15 +400,15 @@ struct AnnotatingVisitor
const sal_uInt8 nRed ( toByteColor(rColor.r) );
const sal_uInt8 nGreen( toByteColor(rColor.g) );
const sal_uInt8 nBlue ( toByteColor(rColor.b) );
- aBuf.append( sal_Unicode('#') );
+ aBuf.append( '#' );
if( nRed < 0x10 )
- aBuf.append( sal_Unicode('0') );
+ aBuf.append( '0' );
aBuf.append( sal_Int32(nRed), 16 );
if( nGreen < 0x10 )
- aBuf.append( sal_Unicode('0') );
+ aBuf.append( '0' );
aBuf.append( sal_Int32(nGreen), 16 );
if( nBlue < 0x10 )
- aBuf.append( sal_Unicode('0') );
+ aBuf.append( '0' );
aBuf.append( sal_Int32(nBlue), 16 );
// TODO(F3): respect alpha transparency (polygons etc.)