summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgstylenode.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/svgstylenode.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/svgstylenode.cxx')
-rw-r--r--svgio/source/svgreader/svgstylenode.cxx4
1 files changed, 2 insertions, 2 deletions
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)