summaryrefslogtreecommitdiffstats
path: root/svgio/inc/svgdocument.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/inc/svgdocument.hxx')
-rw-r--r--svgio/inc/svgdocument.hxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/svgio/inc/svgdocument.hxx b/svgio/inc/svgdocument.hxx
index 77b4d38911..9f79342c0c 100644
--- a/svgio/inc/svgdocument.hxx
+++ b/svgio/inc/svgdocument.hxx
@@ -34,9 +34,6 @@ namespace svgio::svgreader
/// the document hierarchy with all root nodes
SvgNodeVector maNodes;
- /// invalid nodes that have no parent
- SvgNodeVector maOrphanNodes;
-
/// the absolute path of the Svg file in progress (if available)
const OUString maAbsolutePath;
@@ -75,9 +72,6 @@ namespace svgio::svgreader
/// data read access
const SvgNodeVector& getSvgNodeVector() const { return maNodes; }
const OUString& getAbsolutePath() const { return maAbsolutePath; }
-
- /// invalid nodes that have no parent
- void addOrphanNode(SvgNode* pOrphan) { maOrphanNodes.emplace_back(pOrphan); }
};
} // end of namespace svgio::svgreader