diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2015-04-02 02:53:57 +0200 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2015-04-02 11:46:10 +0200 |
commit | 924e88877c2d93e0ae05633b1a4307f6ca2d18e0 (patch) | |
tree | c2c253905e8f639940f0217cb57c3673400435ef | |
parent | 11a52df2216bf96a3869ac894513959098dc14da (diff) |
be honest and throw about unimplemented functions
Change-Id: I912297a79d3eb99700dce635ab606eee190350e5
-rw-r--r-- | sw/source/core/unocore/unotbl.cxx | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index 2871b84a64fb..3e432969525d 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -3134,24 +3134,16 @@ uno::Any SwXTextTable::getPropertyValue(const OUString& rPropertyName) } void SwXTextTable::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception ) -{ - OSL_FAIL("not implemented"); -} + { throw uno::RuntimeException("Not implemented", static_cast<cppu::OWeakObject*>(this)); } void SwXTextTable::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception ) -{ - OSL_FAIL("not implemented"); -} + { throw uno::RuntimeException("Not implemented", static_cast<cppu::OWeakObject*>(this)); } void SwXTextTable::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception ) -{ - OSL_FAIL("not implemented"); -} + { throw uno::RuntimeException("Not implemented", static_cast<cppu::OWeakObject*>(this)); } void SwXTextTable::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception ) -{ - OSL_FAIL("not implemented"); -} + { throw uno::RuntimeException("Not implemented", static_cast<cppu::OWeakObject*>(this)); } OUString SwXTextTable::getName(void) throw( uno::RuntimeException, std::exception ) { |