summaryrefslogtreecommitdiff
path: root/svgio
diff options
context:
space:
mode:
authorEnrico Weigelt, metux ITS <metuxitservice@googlemail.com>2012-11-15 13:33:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-11-21 14:09:57 +0000
commit42925ee1fd33bcbcf8359404d4abf687acc79315 (patch)
treec0d2936a6527cd5f2d593c8e814aa6aeda7bc44b /svgio
parent4a51910761b1f528cc21a4d0cc7035108d46aa63 (diff)
dropped dead code from svg
Change-Id: I73244d54f182f44c08a942dee95ff11b53a24f5a Reviewed-on: https://gerrit.libreoffice.org/1078 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svgio')
-rw-r--r--svgio/inc/svgio/svgreader/svgdocument.hxx1
-rw-r--r--svgio/inc/svgio/svgreader/svgstyleattributes.hxx1
-rw-r--r--svgio/source/svgreader/svgdocument.cxx8
-rw-r--r--svgio/source/svgreader/svgstyleattributes.cxx13
-rw-r--r--svgio/source/svgreader/svgtextpathnode.cxx15
5 files changed, 0 insertions, 38 deletions
diff --git a/svgio/inc/svgio/svgreader/svgdocument.hxx b/svgio/inc/svgio/svgreader/svgdocument.hxx
index ae30fe40b73d..b8d29ac14f78 100644
--- a/svgio/inc/svgio/svgreader/svgdocument.hxx
+++ b/svgio/inc/svgio/svgreader/svgdocument.hxx
@@ -68,7 +68,6 @@ namespace svgio
/// add/remove styles to mapper
void addSvgStyleAttributesToMapper(const rtl::OUString& rStr, const SvgStyleAttributes& rSvgStyleAttributes);
- void removeSvgStyleAttributesFromMapper(const rtl::OUString& rStr);
/// find a style by it's Id
bool hasSvgStyleAttributesById() const { return !maIdStyleTokenMapperList.empty(); }
diff --git a/svgio/inc/svgio/svgreader/svgstyleattributes.hxx b/svgio/inc/svgio/svgreader/svgstyleattributes.hxx
index 66789586ad6b..042fa66a9ade 100644
--- a/svgio/inc/svgio/svgreader/svgstyleattributes.hxx
+++ b/svgio/inc/svgio/svgreader/svgstyleattributes.hxx
@@ -304,7 +304,6 @@ namespace svgio
/// fill rule content
bool getFillRule() const;
- void setFillRule(const bool* pFillRule = 0);
/// fill StrokeDasharray content
const SvgNumberVector& getStrokeDasharray() const;
diff --git a/svgio/source/svgreader/svgdocument.cxx b/svgio/source/svgreader/svgdocument.cxx
index e5dd4acb5db2..d8c379d8b512 100644
--- a/svgio/source/svgreader/svgdocument.cxx
+++ b/svgio/source/svgreader/svgdocument.cxx
@@ -87,14 +87,6 @@ namespace svgio
}
}
- void SvgDocument::removeSvgStyleAttributesFromMapper(const rtl::OUString& rStr)
- {
- if(rStr.getLength())
- {
- maIdStyleTokenMapperList.erase(rStr);
- }
- }
-
const SvgStyleAttributes* SvgDocument::findSvgStyleAttributesById(const rtl::OUString& rStr) const
{
const IdStyleTokenMapper::const_iterator aResult(maIdStyleTokenMapperList.find(rStr));
diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx
index 1a2755e52b1c..07845df8c931 100644
--- a/svgio/source/svgreader/svgstyleattributes.cxx
+++ b/svgio/source/svgreader/svgstyleattributes.cxx
@@ -2049,19 +2049,6 @@ namespace svgio
return true;
}
- void SvgStyleAttributes::setFillRule(const bool* pFillRule)
- {
- if(pFillRule)
- {
- maFillRuleSet = true;
- maFillRule = *pFillRule;
- }
- else
- {
- maFillRuleSet = false;
- }
- }
-
const SvgNumberVector& SvgStyleAttributes::getStrokeDasharray() const
{
if(!maStrokeDasharray.empty())
diff --git a/svgio/source/svgreader/svgtextpathnode.cxx b/svgio/source/svgreader/svgtextpathnode.cxx
index ba7de86612ae..c06b6b7ca08c 100644
--- a/svgio/source/svgreader/svgtextpathnode.cxx
+++ b/svgio/source/svgreader/svgtextpathnode.cxx
@@ -72,23 +72,8 @@ namespace svgio
// read access to evtl. advanced position
double getPosition() const { return mfPosition; }
-
- // get length of given text
- double getLength(const rtl::OUString& rText) const;
};
- double pathTextBreakupHelper::getLength(const rtl::OUString& rText) const
- {
- const sal_uInt32 nLength(rText.getLength());
-
- if(nLength)
- {
- return getTextLayouter().getTextWidth(rText, 0, nLength);
- }
-
- return 0.0;
- }
-
void pathTextBreakupHelper::freeB2DCubicBezierHelper()
{
if(mpB2DCubicBezierHelper)