summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx')
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
index 848b78a8c3fc..81d5bd02402a 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
@@ -123,11 +123,6 @@ string OOXMLPropertyImpl::toString() const
}
#endif
-Sprm * OOXMLPropertyImpl::clone()
-{
- return new OOXMLPropertyImpl(*this);
-}
-
void OOXMLPropertyImpl::resolve(writerfilter::Properties & rProperties)
{
writerfilter::Properties * pProperties = nullptr;
@@ -157,11 +152,6 @@ OOXMLValue::~OOXMLValue()
{
}
-bool OOXMLValue::getBool() const
-{
- return false;
-}
-
int OOXMLValue::getInt() const
{
return 0;
@@ -265,11 +255,6 @@ OOXMLBooleanValue::~OOXMLBooleanValue()
{
}
-bool OOXMLBooleanValue::getBool() const
-{
- return mbValue;
-}
-
int OOXMLBooleanValue::getInt() const
{
return mbValue ? 1 : 0;
@@ -460,11 +445,6 @@ OOXMLPropertySet * OOXMLPropertySetImpl::clone() const
return new OOXMLPropertySetImpl(*this);
}
-void OOXMLPropertySetImpl::setType(const string & rsType)
-{
- maType = OString(rsType.c_str(), rsType.size());
-}
-
#ifdef DEBUG_WRITERFILTER
string OOXMLPropertySetImpl::toString()
{