diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-04 09:54:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-04 11:10:58 +0000 |
commit | c4fcc5986d0e80e8cefb76359ffde3c59017dda4 (patch) | |
tree | e3f074675414dbdd8160aa8de907dade4c1f8722 | |
parent | 55803acc19045f7c983ca65dd3e16024859d937a (diff) |
coverity#1267692 Uncaught exception
Change-Id: I62c05d2baf7f46263468e194a1e947000ef7a1e3
-rw-r--r-- | filter/source/config/cache/filtercache.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx index dddc603c72cf..5b2a26846aa0 100644 --- a/filter/source/config/cache/filtercache.cxx +++ b/filter/source/config/cache/filtercache.cxx @@ -1258,8 +1258,6 @@ void FilterCache::impl_validateAndOptimize() // <- SAFE } - - void FilterCache::impl_addItem2FlushList( EItemType eType, const OUString& sItem) throw(css::uno::Exception) @@ -1283,7 +1281,7 @@ void FilterCache::impl_addItem2FlushList( EItemType eType, pList = &m_lChangedContentHandlers; break; - default : throw css::uno::Exception("unsupported item type", 0); + default : throw css::uno::RuntimeException("unsupported item type", 0); } OUStringList::const_iterator pItem = ::std::find(pList->begin(), pList->end(), sItem); @@ -1291,8 +1289,6 @@ void FilterCache::impl_addItem2FlushList( EItemType eType, pList->push_back(sItem); } - - FilterCache::EItemFlushState FilterCache::impl_specifyFlushOperation(const css::uno::Reference< css::container::XNameAccess >& xSet , const CacheItemList& rList, const OUString& sItem) |