summaryrefslogtreecommitdiff
path: root/oox/source/docprop
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/source/docprop
parentfb6ec3acbe6d6b9788d068182f8bc3a36d70a91c (diff)
chisel off some more unused code
Change-Id: I62cafc8e10e9c9dab3fde1785b826ba8ff68569f
Diffstat (limited to 'oox/source/docprop')
-rw-r--r--oox/source/docprop/docprophandler.cxx10
-rw-r--r--oox/source/docprop/docprophandler.hxx2
2 files changed, 0 insertions, 12 deletions
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);
};