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 | |
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')
61 files changed, 85 insertions, 97 deletions
diff --git a/svgio/inc/svganode.hxx b/svgio/inc/svganode.hxx index 1590421c5a11..34bc551a54dd 100644 --- a/svgio/inc/svganode.hxx +++ b/svgio/inc/svganode.hxx @@ -41,7 +41,7 @@ namespace svgio::svgreader virtual ~SvgANode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// transform content diff --git a/svgio/inc/svgcirclenode.hxx b/svgio/inc/svgcirclenode.hxx index fa699d82c0f2..613bf115cf6f 100644 --- a/svgio/inc/svgcirclenode.hxx +++ b/svgio/inc/svgcirclenode.hxx @@ -44,7 +44,7 @@ namespace svgio::svgreader virtual ~SvgCircleNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// Cx content, set if found in current context diff --git a/svgio/inc/svgclippathnode.hxx b/svgio/inc/svgclippathnode.hxx index fc2951379350..8843b9e12f77 100644 --- a/svgio/inc/svgclippathnode.hxx +++ b/svgio/inc/svgclippathnode.hxx @@ -42,7 +42,7 @@ namespace svgio::svgreader virtual ~SvgClipPathNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// apply contained clipPath to given geometry #i124852# transform may be needed diff --git a/svgio/inc/svgellipsenode.hxx b/svgio/inc/svgellipsenode.hxx index f0ba640d22c6..1aab9bca4235 100644 --- a/svgio/inc/svgellipsenode.hxx +++ b/svgio/inc/svgellipsenode.hxx @@ -45,7 +45,7 @@ namespace svgio::svgreader virtual ~SvgEllipseNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// Cx content, set if found in current context diff --git a/svgio/inc/svgfecolormatrixnode.hxx b/svgio/inc/svgfecolormatrixnode.hxx index b8c3944435b4..e2c74a03748f 100644 --- a/svgio/inc/svgfecolormatrixnode.hxx +++ b/svgio/inc/svgfecolormatrixnode.hxx @@ -43,8 +43,7 @@ public: SvgFeColorMatrixNode(SvgDocument& rDocument, SvgNode* pParent); virtual ~SvgFeColorMatrixNode() override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, - const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; void apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget) const override; }; diff --git a/svgio/inc/svgfedropshadownode.hxx b/svgio/inc/svgfedropshadownode.hxx index 1f3b62576411..04b3190f1dea 100644 --- a/svgio/inc/svgfedropshadownode.hxx +++ b/svgio/inc/svgfedropshadownode.hxx @@ -37,8 +37,7 @@ public: SvgFeDropShadowNode(SvgDocument& rDocument, SvgNode* pParent); virtual ~SvgFeDropShadowNode() override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, - const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; void apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget) const override; }; diff --git a/svgio/inc/svgfefloodnode.hxx b/svgio/inc/svgfefloodnode.hxx index cc7a985e4416..e74794b97237 100644 --- a/svgio/inc/svgfefloodnode.hxx +++ b/svgio/inc/svgfefloodnode.hxx @@ -38,8 +38,7 @@ public: SvgFeFloodNode(SvgDocument& rDocument, SvgNode* pParent); virtual ~SvgFeFloodNode() override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, - const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; void apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget) const override; }; diff --git a/svgio/inc/svgfegaussianblurnode.hxx b/svgio/inc/svgfegaussianblurnode.hxx index 7ef7acdc419c..14732a968e2d 100644 --- a/svgio/inc/svgfegaussianblurnode.hxx +++ b/svgio/inc/svgfegaussianblurnode.hxx @@ -34,8 +34,7 @@ public: SvgFeGaussianBlurNode(SvgDocument& rDocument, SvgNode* pParent); virtual ~SvgFeGaussianBlurNode() override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, - const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; void apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget) const override; }; diff --git a/svgio/inc/svgfeimagenode.hxx b/svgio/inc/svgfeimagenode.hxx index 0177cafdf4cd..0b05173494d0 100644 --- a/svgio/inc/svgfeimagenode.hxx +++ b/svgio/inc/svgfeimagenode.hxx @@ -34,8 +34,7 @@ public: SvgFeImageNode(SvgDocument& rDocument, SvgNode* pParent); virtual ~SvgFeImageNode() override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, - const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; void apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget) const override; }; diff --git a/svgio/inc/svgfeoffsetnode.hxx b/svgio/inc/svgfeoffsetnode.hxx index fe83e67cef93..b56971dfd741 100644 --- a/svgio/inc/svgfeoffsetnode.hxx +++ b/svgio/inc/svgfeoffsetnode.hxx @@ -34,8 +34,7 @@ public: SvgFeOffsetNode(SvgDocument& rDocument, SvgNode* pParent); virtual ~SvgFeOffsetNode() override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, - const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; void apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget) const override; }; diff --git a/svgio/inc/svggnode.hxx b/svgio/inc/svggnode.hxx index 0ba03a1d043c..5f1f4f73a26a 100644 --- a/svgio/inc/svggnode.hxx +++ b/svgio/inc/svggnode.hxx @@ -42,7 +42,7 @@ namespace svgio::svgreader virtual ~SvgGNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// transform content diff --git a/svgio/inc/svggradientnode.hxx b/svgio/inc/svggradientnode.hxx index 605ac6f4e46c..6a7f385c00e7 100644 --- a/svgio/inc/svggradientnode.hxx +++ b/svgio/inc/svggradientnode.hxx @@ -68,7 +68,7 @@ namespace svgio::svgreader virtual ~SvgGradientNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; /// collect gradient stop entries void collectGradientEntries(drawinglayer::primitive2d::SvgGradientEntryVector& aVector) const; diff --git a/svgio/inc/svggradientstopnode.hxx b/svgio/inc/svggradientstopnode.hxx index ea2bbec7f933..7b2b5e445a50 100644 --- a/svgio/inc/svggradientstopnode.hxx +++ b/svgio/inc/svggradientstopnode.hxx @@ -40,7 +40,7 @@ namespace svgio::svgreader virtual ~SvgGradientStopNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; /// offset content const SvgNumber& getOffset() const { return maOffset; } diff --git a/svgio/inc/svgimagenode.hxx b/svgio/inc/svgimagenode.hxx index 074b659783b3..fa53c2e9cf27 100644 --- a/svgio/inc/svgimagenode.hxx +++ b/svgio/inc/svgimagenode.hxx @@ -52,7 +52,7 @@ namespace svgio::svgreader virtual ~SvgImageNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// transform content, set if found in current context diff --git a/svgio/inc/svglinenode.hxx b/svgio/inc/svglinenode.hxx index 28137303e072..bce06101fe32 100644 --- a/svgio/inc/svglinenode.hxx +++ b/svgio/inc/svglinenode.hxx @@ -45,7 +45,7 @@ namespace svgio::svgreader virtual ~SvgLineNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// X1 content, set if found in current context diff --git a/svgio/inc/svgmarkernode.hxx b/svgio/inc/svgmarkernode.hxx index 3f4b08791bd0..b8fa7c000e68 100644 --- a/svgio/inc/svgmarkernode.hxx +++ b/svgio/inc/svgmarkernode.hxx @@ -67,7 +67,7 @@ namespace svgio::svgreader virtual ~SvgMarkerNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; /// get marker primitives buffered, uses decomposeSvgNode internally const drawinglayer::primitive2d::Primitive2DContainer& getMarkerPrimitives() const; diff --git a/svgio/inc/svgmasknode.hxx b/svgio/inc/svgmasknode.hxx index 641a9fe1a833..386ab9229a2c 100644 --- a/svgio/inc/svgmasknode.hxx +++ b/svgio/inc/svgmasknode.hxx @@ -48,7 +48,7 @@ namespace svgio::svgreader virtual ~SvgMaskNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// apply contained clipPath to given geometry #i124852# transform may be needed diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx index 96c6ade01efa..63abc4f8cb0a 100644 --- a/svgio/inc/svgnode.hxx +++ b/svgio/inc/svgnode.hxx @@ -146,7 +146,7 @@ namespace svgio::svgreader /// style helpers void parseAttributes(const css::uno::Reference< css::xml::sax::XAttributeList >& xAttribs); virtual const SvgStyleAttributes* getSvgStyleAttributes() const; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent); + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent); virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const; /// #i125258# tell if this node is allowed to have a parent style (e.g. defs do not) diff --git a/svgio/inc/svgpathnode.hxx b/svgio/inc/svgpathnode.hxx index bc962691fe25..5f71c51cd0c7 100644 --- a/svgio/inc/svgpathnode.hxx +++ b/svgio/inc/svgpathnode.hxx @@ -47,7 +47,7 @@ namespace svgio::svgreader virtual ~SvgPathNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// path content, set if found in current context diff --git a/svgio/inc/svgpatternnode.hxx b/svgio/inc/svgpatternnode.hxx index 219ca52eae73..75886040804c 100644 --- a/svgio/inc/svgpatternnode.hxx +++ b/svgio/inc/svgpatternnode.hxx @@ -67,7 +67,7 @@ namespace svgio::svgreader virtual ~SvgPatternNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; /// global helpers void getValuesRelative(double& rfX, double& rfY, double& rfW, double& rfH, const basegfx::B2DRange& rGeoRange, SvgNode const & rUser) const; diff --git a/svgio/inc/svgpolynode.hxx b/svgio/inc/svgpolynode.hxx index 772965475eb9..f692d2a1defc 100644 --- a/svgio/inc/svgpolynode.hxx +++ b/svgio/inc/svgpolynode.hxx @@ -45,7 +45,7 @@ namespace svgio::svgreader virtual ~SvgPolyNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// Polygon content, set if found in current context diff --git a/svgio/inc/svgrectnode.hxx b/svgio/inc/svgrectnode.hxx index 5b1dc5bb6a17..161d11eb40c5 100644 --- a/svgio/inc/svgrectnode.hxx +++ b/svgio/inc/svgrectnode.hxx @@ -47,7 +47,7 @@ namespace svgio::svgreader virtual ~SvgRectNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// x content, set if found in current context diff --git a/svgio/inc/svgstylenode.hxx b/svgio/inc/svgstylenode.hxx index 8a70d0ec4767..cb8768e965ed 100644 --- a/svgio/inc/svgstylenode.hxx +++ b/svgio/inc/svgstylenode.hxx @@ -41,7 +41,7 @@ namespace svgio::svgreader /// #i125258# tell if this node is allowed to have a parent style (e.g. defs do not) virtual bool supportsParentStyle() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; /// CssStyleSheet add helpers void addCssStyleSheet(std::u16string_view aSelectors, const SvgStyleAttributes& rNewStyle); diff --git a/svgio/inc/svgsvgnode.hxx b/svgio/inc/svgsvgnode.hxx index 5fe92bd08397..4d0b40d89e2f 100644 --- a/svgio/inc/svgsvgnode.hxx +++ b/svgio/inc/svgsvgnode.hxx @@ -54,7 +54,7 @@ namespace svgio::svgreader virtual ~SvgSvgNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// Seeks width and height of viewport, which is current before the new viewport is set. diff --git a/svgio/inc/svgsymbolnode.hxx b/svgio/inc/svgsymbolnode.hxx index c0822e9be3fd..7a19b335b7b5 100644 --- a/svgio/inc/svgsymbolnode.hxx +++ b/svgio/inc/svgsymbolnode.hxx @@ -38,7 +38,7 @@ namespace svgio::svgreader virtual ~SvgSymbolNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; }; } // end of namespace svgio::svgreader diff --git a/svgio/inc/svgtextnode.hxx b/svgio/inc/svgtextnode.hxx index 787687977e11..c95857e38fff 100644 --- a/svgio/inc/svgtextnode.hxx +++ b/svgio/inc/svgtextnode.hxx @@ -49,7 +49,7 @@ namespace svgio::svgreader SvgNode* pParent); virtual ~SvgTextNode() override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// transform content, set if found in current context diff --git a/svgio/inc/svgtextpathnode.hxx b/svgio/inc/svgtextpathnode.hxx index bafd8e9e4335..585b656f6456 100644 --- a/svgio/inc/svgtextpathnode.hxx +++ b/svgio/inc/svgtextpathnode.hxx @@ -44,7 +44,7 @@ namespace svgio::svgreader virtual ~SvgTextPathNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; void decomposePathNode( const drawinglayer::primitive2d::Primitive2DContainer& rPathContent, drawinglayer::primitive2d::Primitive2DContainer& rTarget, diff --git a/svgio/inc/svgtrefnode.hxx b/svgio/inc/svgtrefnode.hxx index 04fbb509c80e..c4701ceec463 100644 --- a/svgio/inc/svgtrefnode.hxx +++ b/svgio/inc/svgtrefnode.hxx @@ -42,7 +42,7 @@ namespace svgio::svgreader virtual ~SvgTrefNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; /// access to referenced SvgTextNode const SvgTextNode* getReferencedSvgTextNode() const; diff --git a/svgio/inc/svgtspannode.hxx b/svgio/inc/svgtspannode.hxx index d5aa40471d28..84033685d8f9 100644 --- a/svgio/inc/svgtspannode.hxx +++ b/svgio/inc/svgtspannode.hxx @@ -51,7 +51,7 @@ namespace svgio::svgreader virtual ~SvgTspanNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; double getCurrentFontSize() const; diff --git a/svgio/inc/svgusenode.hxx b/svgio/inc/svgusenode.hxx index a672fb0389ec..daf688556541 100644 --- a/svgio/inc/svgusenode.hxx +++ b/svgio/inc/svgusenode.hxx @@ -53,7 +53,7 @@ namespace svgio::svgreader virtual ~SvgUseNode() override; virtual const SvgStyleAttributes* getSvgStyleAttributes() const override; - virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) override; + virtual void parseAttribute(SVGToken aSVGToken, const OUString& aContent) override; virtual void decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool bReferenced) const override; /// transform content 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); |