summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorJuergen Funk <juergen.funk_ml@cib.de>2017-12-13 12:00:22 +0000
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-12-13 14:52:08 +0100
commita89aefc93fa25001a99f1cec3d5d25bab16e60b6 (patch)
tree063fa62daf928d1f2c2f2c4a8b32408e45ecddf5 /filter
parent5722c826a0eecc52892df4e839aa78f0861be80f (diff)
fix build: incompatible exception specs
For gcc 4x and 5.2, we need to have matching, or more narrow, exception specs for overridden virtual methods. Change-Id: I2f2da8b8a9ac5639a3d885cd6851e1d0125651b1
Diffstat (limited to 'filter')
-rw-r--r--filter/source/config/cache/typedetection.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/config/cache/typedetection.hxx b/filter/source/config/cache/typedetection.hxx
index f948e6522697..ae75131a0fa6 100644
--- a/filter/source/config/cache/typedetection.hxx
+++ b/filter/source/config/cache/typedetection.hxx
@@ -383,17 +383,17 @@ private:
public:
using cppu::WeakComponentImplHelperBase::disposing;
- virtual void SAL_CALL disposing(const css::lang::EventObject&) override
+ virtual void SAL_CALL disposing(const css::lang::EventObject&) throw () override
{
}
// XTerminateListener
- virtual void SAL_CALL queryTermination(const css::lang::EventObject&) override
+ virtual void SAL_CALL queryTermination(const css::lang::EventObject&) throw () override
{
m_pTypeDetection->cancel();
}
- virtual void SAL_CALL notifyTermination(const css::lang::EventObject&) override
+ virtual void SAL_CALL notifyTermination(const css::lang::EventObject&) throw () override
{
}