summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-30 10:35:51 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-30 12:44:36 +0000
commit05abd8b205e9d51af41c31ab8a7a2574ee885532 (patch)
treec91c3f59437e9ffb5b06c6992988e626a144e7db /oox
parentfb6ec3acbe6d6b9788d068182f8bc3a36d70a91c (diff)
chisel off some more unused code
Change-Id: I62cafc8e10e9c9dab3fde1785b826ba8ff68569f
Diffstat (limited to 'oox')
-rw-r--r--oox/source/core/filterdetect.cxx11
-rw-r--r--oox/source/docprop/docprophandler.cxx10
-rw-r--r--oox/source/docprop/docprophandler.hxx2
3 files changed, 0 insertions, 23 deletions
diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx
index 936180d846ca..6fc8951001bb 100644
--- a/oox/source/core/filterdetect.cxx
+++ b/oox/source/core/filterdetect.cxx
@@ -143,17 +143,6 @@ void SAL_CALL FilterDetectDocHandler::characters( const OUString& /*aChars*/ )
{
}
-void SAL_CALL FilterDetectDocHandler::ignorableWhitespace( const OUString& /*aWhitespaces*/ )
- throw (SAXException, RuntimeException)
-{
-}
-
-void SAL_CALL FilterDetectDocHandler::processingInstruction(
- const OUString& /*aTarget*/, const OUString& /*aData*/ )
- throw (SAXException, RuntimeException)
-{
-}
-
void FilterDetectDocHandler::parseRelationship( const AttributeList& rAttribs )
{
OUString aType = rAttribs.getString( XML_Type, OUString() );
diff --git a/oox/source/docprop/docprophandler.cxx b/oox/source/docprop/docprophandler.cxx
index fb3b42eb8644..428ecd58fd6e 100644
--- a/oox/source/docprop/docprophandler.cxx
+++ b/oox/source/docprop/docprophandler.cxx
@@ -652,16 +652,6 @@ void SAL_CALL OOXMLDocPropHandler::characters( const OUString& aChars )
}
}
-void SAL_CALL OOXMLDocPropHandler::ignorableWhitespace( const OUString& )
- throw (xml::sax::SAXException, uno::RuntimeException)
-{
-}
-
-void SAL_CALL OOXMLDocPropHandler::processingInstruction( const OUString&, const OUString& )
- throw (xml::sax::SAXException, uno::RuntimeException)
-{
-}
-
} // namespace docprop
} // namespace oox
diff --git a/oox/source/docprop/docprophandler.hxx b/oox/source/docprop/docprophandler.hxx
index 2d5a48a1311d..e73a474ecdc3 100644
--- a/oox/source/docprop/docprophandler.hxx
+++ b/oox/source/docprop/docprophandler.hxx
@@ -79,8 +79,6 @@ public:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createUnknownChildContext( const OUString& Namespace, const OUString& Name, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL characters( const OUString& aChars ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException);
- void SAL_CALL processingInstruction( const OUString& aTarget, const OUString& aData ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException);
};