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.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/svg/svgreader.cxx b/filter/source/svg/svgreader.cxx
index 796bea9d4bf4..cfeaaf4c892b 100644
--- a/filter/source/svg/svgreader.cxx
+++ b/filter/source/svg/svgreader.cxx
@@ -185,7 +185,7 @@ struct AnnotatingVisitor
if (sValue.copy(0,1).equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("#")))
aFound = maGradientIdMap.find(sValue.copy(1));
else
- aFound = maGradientIdMap.find(sValue);;
+ aFound = maGradientIdMap.find(sValue);
if( aFound != maGradientIdMap.end() )
maGradientVector.back() = maGradientVector[aFound->second];
@@ -223,7 +223,7 @@ struct AnnotatingVisitor
if (sValue.copy(0,1).equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("#")))
aFound = maGradientIdMap.find(sValue.copy(1));
else
- aFound = maGradientIdMap.find(sValue);;
+ aFound = maGradientIdMap.find(sValue);
if( aFound != maGradientIdMap.end() )
maGradientVector.back() = maGradientVector[aFound->second];
@@ -829,7 +829,7 @@ struct AnnotatingVisitor
if (sValue.copy(0,1).equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("#")))
aFound = maStopIdMap.find(sValue.copy(1));
else
- aFound = maStopIdMap.find(sValue);;
+ aFound = maStopIdMap.find(sValue);
if( aFound != maStopIdMap.end() )
io_rGradientStop = maGradientStopVector[aFound->second];