diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-22 09:48:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-22 13:11:34 +0100 |
commit | 1a2c28cf0dabd1b84d7130186f562de82cb1ca82 (patch) | |
tree | f54172eb3951868da972602acf12c8f91672f87b /svgio | |
parent | f5fc81616ccf45edd180cfb8c7002eb50284f90d (diff) |
callcatcher: update unused code
Change-Id: I96b4d44e44389245f3ccc4a08198676461c6a38b
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/inc/svgio/svgreader/svgdocument.hxx | 1 | ||||
-rw-r--r-- | svgio/source/svgreader/svgdocument.cxx | 8 |
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)); |