diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-04 20:19:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-04 20:19:59 +0100 |
commit | 4e7a48f4cb1b54ce42c47c93fc28451fe6643d9a (patch) | |
tree | 1d7153b6d09ee27b1cf5daf019267dcfa8382284 /sd | |
parent | 1c18489cd8eaf3ad7e2380cadc0a40621800b3bd (diff) |
coverity#1309059 Uncaught exception
Change-Id: Id7c9b359697613547040c9694c03a427f89f35c3
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/slideshow/slideshowimpl.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/slideshow/slideshowimpl.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx index 72ef6ed08565..20cf5cfe3c30 100644 --- a/sd/source/ui/slideshow/slideshowimpl.cxx +++ b/sd/source/ui/slideshow/slideshowimpl.cxx @@ -3293,7 +3293,7 @@ PresentationSettingsEx::PresentationSettingsEx( PresentationSettings& r ) { } -void PresentationSettingsEx::SetArguments( const Sequence< PropertyValue >& rArguments ) throw (IllegalArgumentException) +void PresentationSettingsEx::SetArguments( const Sequence< PropertyValue >& rArguments ) throw (IllegalArgumentException, std::exception) { sal_Int32 nArguments = rArguments.getLength(); const PropertyValue* pValue = rArguments.getConstArray(); diff --git a/sd/source/ui/slideshow/slideshowimpl.hxx b/sd/source/ui/slideshow/slideshowimpl.hxx index c584a53fe0d9..6e1c2f0c3777 100644 --- a/sd/source/ui/slideshow/slideshowimpl.hxx +++ b/sd/source/ui/slideshow/slideshowimpl.hxx @@ -99,7 +99,7 @@ struct PresentationSettingsEx : public PresentationSettings PresentationSettingsEx( const PresentationSettingsEx& ); PresentationSettingsEx( PresentationSettings& ); - void SetArguments( const css::uno::Sequence< css::beans::PropertyValue >& rArguments ) throw (css::lang::IllegalArgumentException); + void SetArguments( const css::uno::Sequence< css::beans::PropertyValue >& rArguments ) throw (css::lang::IllegalArgumentException, std::exception); void SetPropertyValue( const OUString& rProperty, const css::uno::Any& rValue ) throw (css::lang::IllegalArgumentException, std::exception); }; |