summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgtextpathnode.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-13 16:27:57 +0200
committerNoel Grandin <noel@peralex.com>2013-11-14 08:17:31 +0200
commitc22ac891a3fa99908f0dcce730a83c34e7e9d7fa (patch)
treec0c706a44ef90022024afb4a97411a6f87381d76 /svgio/source/svgreader/svgtextpathnode.cxx
parent99a1f38156aefd7ac3e578ebea74e4bbecdc64dc (diff)
remove unnecessary sal_Unicode casts in SVGIO module
Change-Id: Ie463f500bd8c5af37e99fb9e1a8d1fd5b2cd0766
Diffstat (limited to 'svgio/source/svgreader/svgtextpathnode.cxx')
-rw-r--r--svgio/source/svgreader/svgtextpathnode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svgtextpathnode.cxx b/svgio/source/svgreader/svgtextpathnode.cxx
index 7738fac18b07..8e09a84c3c96 100644
--- a/svgio/source/svgreader/svgtextpathnode.cxx
+++ b/svgio/source/svgreader/svgtextpathnode.cxx
@@ -338,7 +338,7 @@ namespace svgio
{
const sal_Int32 nLen(aContent.getLength());
- if(nLen && sal_Unicode('#') == aContent[0])
+ if(nLen && '#' == aContent[0])
{
maXLink = aContent.copy(1);
}