diff options
-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 */ |