cid#1244954 Uncaught exception

Change-Id: Ica5e88ed8294c4256da2798093cd4a191b7c5313
This commit is contained in:
Noel Grandin
2014-10-10 09:40:32 +02:00
parent 3bbfbed375
commit c2621e6482
2 changed files with 2 additions and 2 deletions

View File

@@ -444,7 +444,7 @@ void FilterCache::removeItem( EItemType eType,
void FilterCache::setItem( EItemType eType , void FilterCache::setItem( EItemType eType ,
const OUString& sItem , const OUString& sItem ,
const CacheItem& aValue) const CacheItem& aValue)
throw(css::uno::Exception) throw(css::uno::Exception, std::exception)
{ {
// SAFE -> // SAFE ->
::osl::ResettableMutexGuard aLock(m_aLock); ::osl::ResettableMutexGuard aLock(m_aLock);

View File

@@ -503,7 +503,7 @@ class FilterCache : public BaseLock
virtual void setItem( EItemType eType , virtual void setItem( EItemType eType ,
const OUString& sItem , const OUString& sItem ,
const CacheItem& aValue) const CacheItem& aValue)
throw(css::uno::Exception); throw(css::uno::Exception, std::exception);