summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-10 09:01:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-10 09:01:02 +0000
commit7aad85c4f5bfd33ce7fdb17643ae16b6b87f7632 (patch)
tree1c4ec06b137f7226ec994ee25f801352e9537b50 /linguistic
parent5b99067d8d6f0fee926405c6e14dbb9d10c7368e (diff)
coverity#1398524 Uncaught exception
Change-Id: I5654f1123fc7dea3ea132141863cd65cf184e360
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/lngsvcmgr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/linguistic/source/lngsvcmgr.cxx b/linguistic/source/lngsvcmgr.cxx
index 9ac96561898b..35cc6e7fcd1c 100644
--- a/linguistic/source/lngsvcmgr.cxx
+++ b/linguistic/source/lngsvcmgr.cxx
@@ -2018,7 +2018,7 @@ uno::Sequence< OUString > LngSvcMgr::getSupportedServiceNames_Static()
uno::Reference< uno::XInterface > SAL_CALL LngSvcMgr_CreateInstance(
const uno::Reference< lang::XMultiServiceFactory > & /*rSMgr*/ )
- throw(uno::Exception)
+ throw(uno::Exception, std::exception)
{
uno::Reference< uno::XInterface > xService = static_cast<cppu::OWeakObject*>(new LngSvcMgr);
return xService;