summaryrefslogtreecommitdiff
path: root/svgio
diff options
context:
space:
mode:
Diffstat (limited to 'svgio')
-rw-r--r--svgio/inc/svgio/svgreader/svgdocument.hxx1
-rw-r--r--svgio/source/svgreader/svgdocument.cxx8
2 files changed, 0 insertions, 9 deletions
diff --git a/svgio/inc/svgio/svgreader/svgdocument.hxx b/svgio/inc/svgio/svgreader/svgdocument.hxx
index cbc651b3b99c..46df2542faad 100644
--- a/svgio/inc/svgio/svgreader/svgdocument.hxx
+++ b/svgio/inc/svgio/svgreader/svgdocument.hxx
@@ -65,7 +65,6 @@ namespace svgio
/// add/remove styles to mapper
void addSvgStyleAttributesToMapper(const OUString& rStr, const SvgStyleAttributes& rSvgStyleAttributes);
- void removeSvgStyleAttributesFromMapper(const OUString& rStr);
/// find a style by it's Id
bool hasGlobalCssStyleAttributes() const { return !maIdStyleTokenMapperList.empty(); }
diff --git a/svgio/source/svgreader/svgdocument.cxx b/svgio/source/svgreader/svgdocument.cxx
index 6f4e0a56746d..60bd2c6a8284 100644
--- a/svgio/source/svgreader/svgdocument.cxx
+++ b/svgio/source/svgreader/svgdocument.cxx
@@ -85,14 +85,6 @@ namespace svgio
}
}
- void SvgDocument::removeSvgStyleAttributesFromMapper(const OUString& rStr)
- {
- if(!rStr.isEmpty())
- {
- maIdStyleTokenMapperList.erase(rStr);
- }
- }
-
const SvgStyleAttributes* SvgDocument::findGlobalCssStyleAttributes(const OUString& rStr) const
{
const IdStyleTokenMapper::const_iterator aResult(maIdStyleTokenMapperList.find(rStr));