summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-03-08 12:28:22 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-03-08 12:28:22 +0100
commit73eb16923b8b36ecd1e4f434bd248e206b775078 (patch)
tree8903c61dd13740e1fbea6764592f5bd4dc6c88fa /writerfilter
parent0859d3723931cc71e42fc6e8d68564e60d7c0c9c (diff)
unused OOXMLUniversalMeasureValue ctor
Change-Id: I4f956cc9aeab0ad761076f25e920c79cdb75c115
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx5
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx1
2 files changed, 0 insertions, 6 deletions
diff --git a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
index 15027b51b120..5d975218d7f3 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
@@ -660,11 +660,6 @@ string OOXMLHexValue::toString() const
// OOXMLUniversalMeasureValue
-OOXMLUniversalMeasureValue::OOXMLUniversalMeasureValue(sal_uInt32 nValue)
- : mnValue(nValue)
-{
-}
-
OOXMLUniversalMeasureValue::OOXMLUniversalMeasureValue(const OUString& rValue)
{
if (rValue.endsWith("pt"))
diff --git a/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx b/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
index 58815b67cc98..c3ce87fac200 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
@@ -220,7 +220,6 @@ class OOXMLUniversalMeasureValue : public OOXMLValue
protected:
sal_uInt32 mnValue;
public:
- explicit OOXMLUniversalMeasureValue(sal_uInt32 nValue);
explicit OOXMLUniversalMeasureValue(const OUString& rValue);
virtual ~OOXMLUniversalMeasureValue();