diff options
-rw-r--r-- | filter/Executable_svg2odf.mk | 2 | ||||
-rw-r--r-- | filter/source/config/cache/basecontainer.cxx | 2 | ||||
-rw-r--r-- | filter/source/config/cache/filterfactory.cxx | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/filter/Executable_svg2odf.mk b/filter/Executable_svg2odf.mk index 329ca8e051bb..aa4e44cef458 100644 --- a/filter/Executable_svg2odf.mk +++ b/filter/Executable_svg2odf.mk @@ -58,7 +58,7 @@ $(eval $(call gb_Executable_use_libraries,svg2odf,\ $(gb_STDLIBS) \ )) -$(eval $(call gb_Executable_add_cxxobjects,svg2odf,\ +$(eval $(call gb_Executable_add_exception_objects,svg2odf,\ filter/source/svg/test/svg2odf \ filter/source/svg/test/odfserializer \ )) diff --git a/filter/source/config/cache/basecontainer.cxx b/filter/source/config/cache/basecontainer.cxx index 642c726ec06b..f8f26a10a397 100644 --- a/filter/source/config/cache/basecontainer.cxx +++ b/filter/source/config/cache/basecontainer.cxx @@ -342,7 +342,7 @@ css::uno::Any SAL_CALL BaseContainer::getByName(const ::rtl::OUString& sItem) aItem = pCache->getItem(m_eType, sItem); pCache->addStatePropsToItem(m_eType, sItem, aItem); // add implicit props "Finalized"/"Mandatory" } - catch(const css::container::NoSuchElementException& exNotExist) + catch(const css::container::NoSuchElementException&) { throw; } diff --git a/filter/source/config/cache/filterfactory.cxx b/filter/source/config/cache/filterfactory.cxx index 935ada0e0147..fb24a6546b49 100644 --- a/filter/source/config/cache/filterfactory.cxx +++ b/filter/source/config/cache/filterfactory.cxx @@ -414,7 +414,7 @@ OUStringList FilterFactory::impl_queryMatchByDocumentService(const QueryTokenize // It match the query ... lResult.push_back(sName); } - catch(const css::uno::RuntimeException& exRun) + catch(const css::uno::RuntimeException&) { throw; } catch(const css::uno::Exception&) { continue; } @@ -539,7 +539,7 @@ OUStringList FilterFactory::impl_getListOfInstalledModules() const OUStringList lModules(xModuleConfig->getElementNames()); return lModules; } - catch(const css::uno::RuntimeException& exRun) + catch(const css::uno::RuntimeException&) { throw; } catch(const css::uno::Exception&) {} @@ -633,7 +633,7 @@ OUStringList FilterFactory::impl_readSortedFilterListFromConfig(const ::rtl::OUS return lSortedFilters; } } - catch(const css::uno::RuntimeException& exRun) + catch(const css::uno::RuntimeException&) { throw; } catch(const css::uno::Exception&) {} |