summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgnode.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/svgnode.cxx
parent99a1f38156aefd7ac3e578ebea74e4bbecdc64dc (diff)
remove unnecessary sal_Unicode casts in SVGIO module
Change-Id: Ie463f500bd8c5af37e99fb9e1a8d1fd5b2cd0766
Diffstat (limited to 'svgio/source/svgreader/svgnode.cxx')
-rw-r--r--svgio/source/svgreader/svgnode.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/source/svgreader/svgnode.cxx b/svgio/source/svgreader/svgnode.cxx
index 8e8f83d345a2..128bccb21cc7 100644
--- a/svgio/source/svgreader/svgnode.cxx
+++ b/svgio/source/svgreader/svgnode.cxx
@@ -51,14 +51,14 @@ namespace svgio
sal_Int32 nPos(0);
const SvgStyleAttributes* pNew = 0;
- skip_char(*pClassList, sal_Unicode(' '), nPos, nLen);
+ skip_char(*pClassList, ' ', nPos, nLen);
while(nPos < nLen)
{
rtl::OUStringBuffer aTokenValue;
- copyToLimiter(*pClassList, sal_Unicode(' '), nPos, aTokenValue, nLen);
- skip_char(*pClassList, sal_Unicode(' '), nPos, nLen);
+ copyToLimiter(*pClassList, ' ', nPos, aTokenValue, nLen);
+ skip_char(*pClassList, ' ', nPos, nLen);
rtl::OUString aId(rtl::OUString::createFromAscii("."));
const rtl::OUString aOUTokenValue(aTokenValue.makeStringAndClear());