From c2621e6482310b5dc2c8dd2c3dc0ea384784b46c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 10 Oct 2014 09:40:32 +0200 Subject: [PATCH] cid#1244954 Uncaught exception Change-Id: Ica5e88ed8294c4256da2798093cd4a191b7c5313 --- filter/source/config/cache/filtercache.cxx | 2 +- filter/source/config/cache/filtercache.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx index ba84e5cf02b1..2fc5cfb4935f 100644 --- a/filter/source/config/cache/filtercache.cxx +++ b/filter/source/config/cache/filtercache.cxx @@ -444,7 +444,7 @@ void FilterCache::removeItem( EItemType eType, void FilterCache::setItem( EItemType eType , const OUString& sItem , const CacheItem& aValue) - throw(css::uno::Exception) + throw(css::uno::Exception, std::exception) { // SAFE -> ::osl::ResettableMutexGuard aLock(m_aLock); diff --git a/filter/source/config/cache/filtercache.hxx b/filter/source/config/cache/filtercache.hxx index 9a3a96d6614c..c992424b591f 100644 --- a/filter/source/config/cache/filtercache.hxx +++ b/filter/source/config/cache/filtercache.hxx @@ -503,7 +503,7 @@ class FilterCache : public BaseLock virtual void setItem( EItemType eType , const OUString& sItem , const CacheItem& aValue) - throw(css::uno::Exception); + throw(css::uno::Exception, std::exception);