summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unusedcode.easy1
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx6
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx1
3 files changed, 0 insertions, 8 deletions
diff --git a/unusedcode.easy b/unusedcode.easy
index b525d1fd0b20..73783bafa21f 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -218,4 +218,3 @@ svt::CheckInvariants(void const*)
svt::table::UnoControlTableModel::checkInvariants() const
vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
writerfilter::dmapper::StyleSheetTable::GetStyleIdFromIndex(unsigned int)
-writerfilter::ooxml::OOXMLBooleanValue::OOXMLBooleanValue(char const*)
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);