diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-27 11:35:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-27 11:35:28 +0100 |
commit | 7fd546207223f3a5d86f4d9399df52da9fbb9c23 (patch) | |
tree | b2166a923690faa6534ab141253f4cf155b97eac | |
parent | fd96b86c0a8cf1c40946e2aa2e4fc4f92839c5dc (diff) |
WaE: fix various msvc2008 warnings
Change-Id: Ic4db9792177754222da324bfce58eee06b74c3bf
-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&) {} |