summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-29 15:37:15 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-29 16:41:32 +0000
commit9bd0e895a4c937f1f831aab1cca6f2e94387260b (patch)
treecfc543fd34317c85246e169d4100ca3d6b8429ab /include
parentcoverity#1079001 Uncaught exception (diff)
downloadcore-9bd0e895a4c937f1f831aab1cca6f2e94387260b.tar.gz
core-9bd0e895a4c937f1f831aab1cca6f2e94387260b.zip
coverity#1079000 Uncaught exception
Change-Id: I7ffee42abe03c34d68b6168328143666d72e7efc
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/propertycontainer.hxx3
-rw-r--r--include/cppuhelper/propshlp.hxx3
2 files changed, 4 insertions, 2 deletions
diff --git a/include/comphelper/propertycontainer.hxx b/include/comphelper/propertycontainer.hxx
index e34822564a40..a594b71e9ea2 100644
--- a/include/comphelper/propertycontainer.hxx
+++ b/include/comphelper/propertycontainer.hxx
@@ -67,7 +67,8 @@ protected:
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue
)
- throw (::com::sun::star::uno::Exception);
+ throw (::com::sun::star::uno::Exception,
+ std::exception);
using OPropertyContainer_Base::getFastPropertyValue;
virtual void SAL_CALL getFastPropertyValue(
diff --git a/include/cppuhelper/propshlp.hxx b/include/cppuhelper/propshlp.hxx
index bc01cbccb2b2..6bbf67130dfc 100644
--- a/include/cppuhelper/propshlp.hxx
+++ b/include/cppuhelper/propshlp.hxx
@@ -603,7 +603,8 @@ protected:
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue )
- throw (::com::sun::star::uno::Exception) = 0;
+ throw (::com::sun::star::uno::Exception,
+ std::exception) = 0;
/**
The same as getFastProperyValue, but return the value through rValue and nHandle
is always valid.