summaryrefslogtreecommitdiff
path: root/svgio/source
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-07-18 16:50:36 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2022-07-18 21:59:29 +0200
commit67c422585db43e30f0c9e4c9753fcd14f87a277f (patch)
treebe58ee4a31b8dabe4591a5a7d35e657e3b8b384a /svgio/source
parent5eb4c5e93b0f0a3fd9cded5e086086d07cb7c92d (diff)
tdf#126330: use correct type for symbol node
Change-Id: Ibd4b7e021dac28469cb3ea2d30e79de8f24c88be Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137201 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'svgio/source')
-rw-r--r--svgio/source/svgreader/svgsymbolnode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svgsymbolnode.cxx b/svgio/source/svgreader/svgsymbolnode.cxx
index b92bde34a5fe..196c83a64db4 100644
--- a/svgio/source/svgreader/svgsymbolnode.cxx
+++ b/svgio/source/svgreader/svgsymbolnode.cxx
@@ -24,7 +24,7 @@ namespace svgio::svgreader
SvgSymbolNode::SvgSymbolNode(
SvgDocument& rDocument,
SvgNode* pParent)
- : SvgNode(SVGToken::Svg, rDocument, pParent),
+ : SvgNode(SVGToken::Symbol, rDocument, pParent),
maSvgStyleAttributes(*this)
{
}