diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2023-10-26 12:10:14 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2023-10-27 06:35:41 +0200 |
commit | 48ff87e100b7aa3a519937a73076f5c38cb919da (patch) | |
tree | b7bb897bc45ddb525c4230b613cccf7602e16d7c /svgio/source | |
parent | 009ea6f786e5a7fd1e08d768e33b5b7af30e5765 (diff) |
Drop rTokenName argument from SvgNode::parseAttribute
It was never used.
Change-Id: I8bc7d625977a6cdc8fe6863037e72577dbfc46c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158493
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'svgio/source')
31 files changed, 55 insertions, 61 deletions
diff --git a/svgio/source/svgreader/svganode.cxx b/svgio/source/svgreader/svganode.cxx index d741db85ebe0..67b523b7ef0b 100644 --- a/svgio/source/svgreader/svganode.cxx +++ b/svgio/source/svgreader/svganode.cxx @@ -38,10 +38,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgANode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgANode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgcirclenode.cxx b/svgio/source/svgreader/svgcirclenode.cxx index 513c128cf272..21dac849be45 100644 --- a/svgio/source/svgreader/svgcirclenode.cxx +++ b/svgio/source/svgreader/svgcirclenode.cxx @@ -44,10 +44,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgCircleNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgCircleNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgclippathnode.cxx b/svgio/source/svgreader/svgclippathnode.cxx index 387f7af553e1..5941c22da74c 100644 --- a/svgio/source/svgreader/svgclippathnode.cxx +++ b/svgio/source/svgreader/svgclippathnode.cxx @@ -47,10 +47,10 @@ namespace svgio::svgreader return &maSvgStyleAttributes; } - void SvgClipPathNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgClipPathNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgdocumenthandler.cxx b/svgio/source/svgreader/svgdocumenthandler.cxx index 9c8ab88f2f62..5e89edad6ca7 100644 --- a/svgio/source/svgreader/svgdocumenthandler.cxx +++ b/svgio/source/svgreader/svgdocumenthandler.cxx @@ -478,7 +478,7 @@ namespace if(!aText.isEmpty()) { - mpTarget->parseAttribute(SVGTokenToStr(aSVGToken), aSVGToken, aText); + mpTarget->parseAttribute(aSVGToken, aText); } } diff --git a/svgio/source/svgreader/svgellipsenode.cxx b/svgio/source/svgreader/svgellipsenode.cxx index 8f203fc49869..1843a017c529 100644 --- a/svgio/source/svgreader/svgellipsenode.cxx +++ b/svgio/source/svgreader/svgellipsenode.cxx @@ -45,10 +45,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgEllipseNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgEllipseNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgfecolormatrixnode.cxx b/svgio/source/svgreader/svgfecolormatrixnode.cxx index ba4584aa2554..3a7943ac4e4e 100644 --- a/svgio/source/svgreader/svgfecolormatrixnode.cxx +++ b/svgio/source/svgreader/svgfecolormatrixnode.cxx @@ -31,8 +31,7 @@ SvgFeColorMatrixNode::SvgFeColorMatrixNode(SvgDocument& rDocument, SvgNode* pPar SvgFeColorMatrixNode::~SvgFeColorMatrixNode() {} -void SvgFeColorMatrixNode::parseAttribute(const OUString& /*rTokenName*/, SVGToken aSVGToken, - const OUString& aContent) +void SvgFeColorMatrixNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // parse own switch (aSVGToken) diff --git a/svgio/source/svgreader/svgfedropshadownode.cxx b/svgio/source/svgreader/svgfedropshadownode.cxx index d33583e44a90..c968f51f5c1a 100644 --- a/svgio/source/svgreader/svgfedropshadownode.cxx +++ b/svgio/source/svgreader/svgfedropshadownode.cxx @@ -38,8 +38,7 @@ SvgFeDropShadowNode::SvgFeDropShadowNode(SvgDocument& rDocument, SvgNode* pParen SvgFeDropShadowNode::~SvgFeDropShadowNode() {} -void SvgFeDropShadowNode::parseAttribute(const OUString& /*rTokenName*/, SVGToken aSVGToken, - const OUString& aContent) +void SvgFeDropShadowNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // parse own switch (aSVGToken) diff --git a/svgio/source/svgreader/svgfefloodnode.cxx b/svgio/source/svgreader/svgfefloodnode.cxx index 99b8d111b32b..89f12c4a4d5d 100644 --- a/svgio/source/svgreader/svgfefloodnode.cxx +++ b/svgio/source/svgreader/svgfefloodnode.cxx @@ -39,8 +39,7 @@ SvgFeFloodNode::SvgFeFloodNode(SvgDocument& rDocument, SvgNode* pParent) SvgFeFloodNode::~SvgFeFloodNode() {} -void SvgFeFloodNode::parseAttribute(const OUString& /*rTokenName*/, SVGToken aSVGToken, - const OUString& aContent) +void SvgFeFloodNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // parse own switch (aSVGToken) diff --git a/svgio/source/svgreader/svgfegaussianblurnode.cxx b/svgio/source/svgreader/svgfegaussianblurnode.cxx index e2be664be725..53b1513d255c 100644 --- a/svgio/source/svgreader/svgfegaussianblurnode.cxx +++ b/svgio/source/svgreader/svgfegaussianblurnode.cxx @@ -31,8 +31,7 @@ SvgFeGaussianBlurNode::SvgFeGaussianBlurNode(SvgDocument& rDocument, SvgNode* pP SvgFeGaussianBlurNode::~SvgFeGaussianBlurNode() {} -void SvgFeGaussianBlurNode::parseAttribute(const OUString& /*rTokenName*/, SVGToken aSVGToken, - const OUString& aContent) +void SvgFeGaussianBlurNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // parse own switch (aSVGToken) diff --git a/svgio/source/svgreader/svgfeimagenode.cxx b/svgio/source/svgreader/svgfeimagenode.cxx index 12938a6e1be7..7174bcaf4a27 100644 --- a/svgio/source/svgreader/svgfeimagenode.cxx +++ b/svgio/source/svgreader/svgfeimagenode.cxx @@ -36,8 +36,7 @@ SvgFeImageNode::SvgFeImageNode(SvgDocument& rDocument, SvgNode* pParent) SvgFeImageNode::~SvgFeImageNode() {} -void SvgFeImageNode::parseAttribute(const OUString& /*rTokenName*/, SVGToken aSVGToken, - const OUString& aContent) +void SvgFeImageNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // parse own switch (aSVGToken) diff --git a/svgio/source/svgreader/svgfeoffsetnode.cxx b/svgio/source/svgreader/svgfeoffsetnode.cxx index 17426a348bad..324920cde112 100644 --- a/svgio/source/svgreader/svgfeoffsetnode.cxx +++ b/svgio/source/svgreader/svgfeoffsetnode.cxx @@ -32,8 +32,7 @@ SvgFeOffsetNode::SvgFeOffsetNode(SvgDocument& rDocument, SvgNode* pParent) SvgFeOffsetNode::~SvgFeOffsetNode() {} -void SvgFeOffsetNode::parseAttribute(const OUString& /*rTokenName*/, SVGToken aSVGToken, - const OUString& aContent) +void SvgFeOffsetNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // parse own switch (aSVGToken) diff --git a/svgio/source/svgreader/svggnode.cxx b/svgio/source/svgreader/svggnode.cxx index d833a6fa92c4..b70e780206e4 100644 --- a/svgio/source/svgreader/svggnode.cxx +++ b/svgio/source/svgreader/svggnode.cxx @@ -43,10 +43,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgGNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgGNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svggradientnode.cxx b/svgio/source/svgreader/svggradientnode.cxx index 92a2372a196e..723dac6d5f1c 100644 --- a/svgio/source/svgreader/svggradientnode.cxx +++ b/svgio/source/svgreader/svggradientnode.cxx @@ -57,10 +57,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgGradientNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgGradientNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svggradientstopnode.cxx b/svgio/source/svgreader/svggradientstopnode.cxx index a1b4cde13235..d3b300197764 100644 --- a/svgio/source/svgreader/svggradientstopnode.cxx +++ b/svgio/source/svgreader/svggradientstopnode.cxx @@ -38,10 +38,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgGradientStopNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgGradientStopNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgimagenode.cxx b/svgio/source/svgreader/svgimagenode.cxx index 2ce6ce4c8038..7e068136287b 100644 --- a/svgio/source/svgreader/svgimagenode.cxx +++ b/svgio/source/svgreader/svgimagenode.cxx @@ -57,10 +57,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgImageNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgImageNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svglinenode.cxx b/svgio/source/svgreader/svglinenode.cxx index ea1ab343ff53..41090dcee8c0 100644 --- a/svgio/source/svgreader/svglinenode.cxx +++ b/svgio/source/svgreader/svglinenode.cxx @@ -44,10 +44,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgLineNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgLineNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgmarkernode.cxx b/svgio/source/svgreader/svgmarkernode.cxx index 7229a7bdc94c..083471b49c6b 100644 --- a/svgio/source/svgreader/svgmarkernode.cxx +++ b/svgio/source/svgreader/svgmarkernode.cxx @@ -46,10 +46,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgMarkerNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgMarkerNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgmasknode.cxx b/svgio/source/svgreader/svgmasknode.cxx index 71531637f565..57c95ee01af5 100644 --- a/svgio/source/svgreader/svgmasknode.cxx +++ b/svgio/source/svgreader/svgmasknode.cxx @@ -53,10 +53,10 @@ namespace svgio::svgreader return &maSvgStyleAttributes; } - void SvgMaskNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgMaskNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgnode.cxx b/svgio/source/svgreader/svgnode.cxx index fd80337eb5b6..0ae4e80363c8 100644 --- a/svgio/source/svgreader/svgnode.cxx +++ b/svgio/source/svgreader/svgnode.cxx @@ -421,7 +421,7 @@ namespace { const OUString aTokenName(xAttribs->getNameByIndex(a)); const SVGToken aSVGToken(StrToSVGToken(aTokenName, false)); - parseAttribute(aTokenName, aSVGToken, xAttribs->getValueByIndex(a)); + parseAttribute(aSVGToken, xAttribs->getValueByIndex(a)); } } @@ -507,7 +507,7 @@ namespace { return Display::Inline; } - void SvgNode::parseAttribute(const OUString& /*rTokenName*/, SVGToken aSVGToken, const OUString& aContent) + void SvgNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { switch(aSVGToken) { diff --git a/svgio/source/svgreader/svgpathnode.cxx b/svgio/source/svgreader/svgpathnode.cxx index d52114aa6da8..307d5c9f0345 100644 --- a/svgio/source/svgreader/svgpathnode.cxx +++ b/svgio/source/svgreader/svgpathnode.cxx @@ -39,10 +39,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgPathNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgPathNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgpatternnode.cxx b/svgio/source/svgreader/svgpatternnode.cxx index 5620bd6b2ced..4c180558d5ca 100644 --- a/svgio/source/svgreader/svgpatternnode.cxx +++ b/svgio/source/svgreader/svgpatternnode.cxx @@ -50,10 +50,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgPatternNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgPatternNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgpolynode.cxx b/svgio/source/svgreader/svgpolynode.cxx index 74cd722915e4..30ab7ed31185 100644 --- a/svgio/source/svgreader/svgpolynode.cxx +++ b/svgio/source/svgreader/svgpolynode.cxx @@ -42,10 +42,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgPolyNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgPolyNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgrectnode.cxx b/svgio/source/svgreader/svgrectnode.cxx index c063ecf87195..3829f21a678b 100644 --- a/svgio/source/svgreader/svgrectnode.cxx +++ b/svgio/source/svgreader/svgrectnode.cxx @@ -45,10 +45,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgRectNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgRectNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgstylenode.cxx b/svgio/source/svgreader/svgstylenode.cxx index b11f7129e0b3..88b380cf3b36 100644 --- a/svgio/source/svgreader/svgstylenode.cxx +++ b/svgio/source/svgreader/svgstylenode.cxx @@ -45,10 +45,10 @@ namespace svgio::svgreader return SvgNode::supportsParentStyle(); } - void SvgStyleNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgStyleNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // parse own switch(aSVGToken) diff --git a/svgio/source/svgreader/svgsvgnode.cxx b/svgio/source/svgreader/svgsvgnode.cxx index dfc3285f30cc..09c081069859 100644 --- a/svgio/source/svgreader/svgsvgnode.cxx +++ b/svgio/source/svgreader/svgsvgnode.cxx @@ -107,10 +107,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgSvgNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgSvgNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgsymbolnode.cxx b/svgio/source/svgreader/svgsymbolnode.cxx index 196c83a64db4..6e18d4bca049 100644 --- a/svgio/source/svgreader/svgsymbolnode.cxx +++ b/svgio/source/svgreader/svgsymbolnode.cxx @@ -38,10 +38,10 @@ namespace svgio::svgreader return &maSvgStyleAttributes; } - void SvgSymbolNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgSymbolNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgtextnode.cxx b/svgio/source/svgreader/svgtextnode.cxx index bd8a334c5e11..ca17c2fc4237 100644 --- a/svgio/source/svgreader/svgtextnode.cxx +++ b/svgio/source/svgreader/svgtextnode.cxx @@ -38,10 +38,10 @@ namespace svgio::svgreader { } - void SvgTextNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgTextNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgTspanNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgTspanNode::parseAttribute(aSVGToken, aContent); // parse own switch(aSVGToken) diff --git a/svgio/source/svgreader/svgtextpathnode.cxx b/svgio/source/svgreader/svgtextpathnode.cxx index 4dad47f62bb6..9ccdb93f599d 100644 --- a/svgio/source/svgreader/svgtextpathnode.cxx +++ b/svgio/source/svgreader/svgtextpathnode.cxx @@ -255,10 +255,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgTextPathNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgTextPathNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgtrefnode.cxx b/svgio/source/svgreader/svgtrefnode.cxx index 00daf7a96c8a..eb59acfec9c3 100644 --- a/svgio/source/svgreader/svgtrefnode.cxx +++ b/svgio/source/svgreader/svgtrefnode.cxx @@ -39,10 +39,10 @@ namespace svgio::svgreader return &maSvgStyleAttributes; } - void SvgTrefNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgTrefNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgtspannode.cxx b/svgio/source/svgreader/svgtspannode.cxx index 2ac7ee1118ed..27d714e66a85 100644 --- a/svgio/source/svgreader/svgtspannode.cxx +++ b/svgio/source/svgreader/svgtspannode.cxx @@ -43,10 +43,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgTspanNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgTspanNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); diff --git a/svgio/source/svgreader/svgusenode.cxx b/svgio/source/svgreader/svgusenode.cxx index b3d0c1c59a94..d34e94427e64 100644 --- a/svgio/source/svgreader/svgusenode.cxx +++ b/svgio/source/svgreader/svgusenode.cxx @@ -41,10 +41,10 @@ namespace svgio::svgreader return checkForCssStyle(maSvgStyleAttributes); } - void SvgUseNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) + void SvgUseNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent) { // call parent - SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); + SvgNode::parseAttribute(aSVGToken, aContent); // read style attributes maSvgStyleAttributes.parseStyleAttribute(aSVGToken, aContent); |