summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-09-12 09:29:12 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-09-12 09:37:32 +0200
commitc356bd37bdebd5a9eea1d25c628212f071659158 (patch)
treeccb5a4a03689f59257b9d40c2a4a1b1f38073957 /writerfilter
parent050c4a13b6d2569c9ae3ddb4fbd01956f9d7d4cd (diff)
Unused writerfilter::ooxml::OOXMLBooleanValue ctor
Change-Id: I8cf92c38a41423e5bae2852b8affeea2164646f0
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx6
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx1
2 files changed, 0 insertions, 7 deletions
diff --git a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
index 3a6b1be01856..f3380370c310 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
@@ -286,12 +286,6 @@ OOXMLBooleanValue::OOXMLBooleanValue(bool bValue)
{
}
-OOXMLBooleanValue::OOXMLBooleanValue(const char *pValue)
-: mbValue(false)
-{
- mbValue = GetBooleanValue(pValue);
-}
-
OOXMLBooleanValue::~OOXMLBooleanValue()
{
}
diff --git a/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx b/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
index e820fdeec1ee..af9e1d719dc1 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
@@ -104,7 +104,6 @@ class OOXMLBooleanValue : public OOXMLValue
protected:
bool mbValue;
explicit OOXMLBooleanValue(bool bValue);
- explicit OOXMLBooleanValue(const char *pValue);
public:
static OOXMLValue::Pointer_t Create (bool bValue);
static OOXMLValue::Pointer_t Create (const char *pValue);