summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgcirclenode.cxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2023-10-26 12:10:14 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2023-10-27 06:35:41 +0200
commit48ff87e100b7aa3a519937a73076f5c38cb919da (patch)
treeb7bb897bc45ddb525c4230b613cccf7602e16d7c /svgio/source/svgreader/svgcirclenode.cxx
parent009ea6f786e5a7fd1e08d768e33b5b7af30e5765 (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/svgreader/svgcirclenode.cxx')
-rw-r--r--svgio/source/svgreader/svgcirclenode.cxx4
1 files changed, 2 insertions, 2 deletions
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);