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/inc/svgstylenode.hxx | |
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/inc/svgstylenode.hxx')
-rw-r--r-- | svgio/inc/svgstylenode.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
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); |