diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-10 09:01:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-10 09:01:02 +0000 |
commit | 7aad85c4f5bfd33ce7fdb17643ae16b6b87f7632 (patch) | |
tree | 1c4ec06b137f7226ec994ee25f801352e9537b50 /linguistic | |
parent | 5b99067d8d6f0fee926405c6e14dbb9d10c7368e (diff) |
coverity#1398524 Uncaught exception
Change-Id: I5654f1123fc7dea3ea132141863cd65cf184e360
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/lngsvcmgr.cxx | 2 |
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; |