[Libreoffice-commits] core.git: unusedcode.easy writerfilter/source
Miklos Vajna
vmiklos at collabora.co.uk
Fri Sep 12 00:38:38 PDT 2014
unusedcode.easy | 1 -
writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx | 6 ------
writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx | 1 -
3 files changed, 8 deletions(-)
New commits:
commit c356bd37bdebd5a9eea1d25c628212f071659158
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Fri Sep 12 09:29:12 2014 +0200
Unused writerfilter::ooxml::OOXMLBooleanValue ctor
Change-Id: I8cf92c38a41423e5bae2852b8affeea2164646f0
diff --git a/unusedcode.easy b/unusedcode.easy
index b525d1f..73783ba 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 3a6b1be..f338037 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 e820fde..af9e1d7 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);
More information about the Libreoffice-commits
mailing list