summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-28 17:01:32 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-28 17:55:54 +0100
commit65b0c0da01865c8eb79b7450c18ef0cabfba7c19 (patch)
tree76bd213b5f22b25c6f17dac00f38c33b89afa6b5 /sd
parent9c019970d7f3d6d32d4b52f76b15aa8d7a488622 (diff)
coverity#1308525 Uncaught exception
Change-Id: I723b8c42c07d889b4082733d1d653c62b78d7d63
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slideshow/slideshowimpl.cxx2
-rw-r--r--sd/source/ui/slideshow/slideshowimpl.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx
index 3747c7b50268..8b021467b51b 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -1659,7 +1659,7 @@ sal_Int32 SlideshowImpl::getSlideNumberForBookmark( const OUString& rStrBookmark
return ( nPgNum - 1) >> 1;
}
-void SlideshowImpl::hyperLinkClicked( OUString const& aHyperLink ) throw (RuntimeException)
+void SlideshowImpl::hyperLinkClicked( OUString const& aHyperLink ) throw (RuntimeException, std::exception)
{
OUString aBookmark( aHyperLink );
diff --git a/sd/source/ui/slideshow/slideshowimpl.hxx b/sd/source/ui/slideshow/slideshowimpl.hxx
index 39e0998896d4..3190f02a850c 100644
--- a/sd/source/ui/slideshow/slideshowimpl.hxx
+++ b/sd/source/ui/slideshow/slideshowimpl.hxx
@@ -216,7 +216,7 @@ public:
// will be called from the SlideShowListenerProxy when this event is fired from the XSlideShow
void slideEnded(const bool bReverse);
- void hyperLinkClicked(const OUString & hyperLink) throw (css::uno::RuntimeException);
+ void hyperLinkClicked(const OUString & hyperLink) throw (css::uno::RuntimeException, std::exception);
void click(const css::uno::Reference< css::drawing::XShape > & xShape, const css::awt::MouseEvent & aOriginalEvent);
bool swipe(const CommandSwipeData &rSwipeData);
bool longpress(const CommandLongPressData& rLongPressData);