diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-10 09:00:13 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-10 09:00:13 +0000 |
commit | 5b99067d8d6f0fee926405c6e14dbb9d10c7368e (patch) | |
tree | 249fe1d8c2c716ab28b894757b3b5b2b716b55c4 | |
parent | 001f85ffa45d0a46b3eea48a5c60597ea03afd42 (diff) |
coverity#1398525 Uncaught exception
Change-Id: Ic7d2ae5d597ad589b86ec27e2645c543e08121ad
-rw-r--r-- | filter/source/config/cache/filtercache.cxx | 4 | ||||
-rw-r--r-- | filter/source/config/cache/filtercache.hxx | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx index 86d092e73b1a..671b0ba5b212 100644 --- a/filter/source/config/cache/filtercache.cxx +++ b/filter/source/config/cache/filtercache.cxx @@ -1512,10 +1512,9 @@ void FilterCache::impl_loadSet(const css::uno::Reference< css::container::XNameA } } - void FilterCache::impl_readPatchUINames(const css::uno::Reference< css::container::XNameAccess >& xNode, CacheItem& rItem) - throw(css::uno::Exception) + throw(css::uno::Exception, std::exception) { // SAFE -> ---------------------------------- @@ -1573,7 +1572,6 @@ void FilterCache::impl_readPatchUINames(const css::uno::Reference< css::containe rItem[PROPNAME_UINAME] = pUIName->second; } - void FilterCache::impl_savePatchUINames(const css::uno::Reference< css::container::XNameReplace >& xNode, const CacheItem& rItem) throw(css::uno::Exception) diff --git a/filter/source/config/cache/filtercache.hxx b/filter/source/config/cache/filtercache.hxx index 35ade1903875..650f996b11f7 100644 --- a/filter/source/config/cache/filtercache.hxx +++ b/filter/source/config/cache/filtercache.hxx @@ -861,7 +861,7 @@ class FilterCache : public BaseLock /** TODO */ void impl_readPatchUINames(const css::uno::Reference< css::container::XNameAccess >& xNode, CacheItem& rItem) - throw(css::uno::Exception); + throw(css::uno::Exception, std::exception); /** TODO */ |