From c4fcc5986d0e80e8cefb76359ffde3c59017dda4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 4 Feb 2015 09:54:20 +0000 Subject: coverity#1267692 Uncaught exception Change-Id: I62c05d2baf7f46263468e194a1e947000ef7a1e3 --- filter/source/config/cache/filtercache.cxx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'filter/source') 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) -- cgit