summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-10-11 14:50:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-10-12 17:36:55 +0200
commitb0dc3c644ffc3726b3616377950df25dc09d1a35 (patch)
treebcc227dc47323c41a77a49568812e8fe0f499019 /slideshow
parentff1bd0f189635a6efe84337f8c6b4a366e7501e2 (diff)
coverity#1440239 Uncaught exception
Change-Id: I2b744d70ab426fbf26bcb3762aafaa569d0aafc7 Reviewed-on: https://gerrit.libreoffice.org/61675 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/slide/slideanimations.cxx2
-rw-r--r--slideshow/source/engine/slide/slideanimations.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/slide/slideanimations.cxx b/slideshow/source/engine/slide/slideanimations.cxx
index 43ac2f89e369..8c6be3eeb99f 100644
--- a/slideshow/source/engine/slide/slideanimations.cxx
+++ b/slideshow/source/engine/slide/slideanimations.cxx
@@ -43,7 +43,7 @@ namespace slideshow
"SlideAnimations::SlideAnimations(): Invalid SlideShowContext" );
}
- SlideAnimations::~SlideAnimations()
+ SlideAnimations::~SlideAnimations() COVERITY_NOEXCEPT_FALSE
{
if( mpRootNode )
{
diff --git a/slideshow/source/engine/slide/slideanimations.hxx b/slideshow/source/engine/slide/slideanimations.hxx
index e4739027395a..3954aa345120 100644
--- a/slideshow/source/engine/slide/slideanimations.hxx
+++ b/slideshow/source/engine/slide/slideanimations.hxx
@@ -57,7 +57,7 @@ namespace slideshow
*/
SlideAnimations( const SlideShowContext& rContext,
const ::basegfx::B2DVector& rSlideSize );
- ~SlideAnimations();
+ ~SlideAnimations() COVERITY_NOEXCEPT_FALSE;
/** Import animations from a SMIL root animation node.