summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgnode.cxx
diff options
context:
space:
mode:
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());