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/svgreader/svggradientnode.cxx | |
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/svgreader/svggradientnode.cxx')
-rw-r--r-- | svgio/source/svgreader/svggradientnode.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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); |