diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 14:59:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 15:20:45 +0200 |
commit | 12685fe6b8c28ceeaacf590503c9c30ef64af3e9 (patch) | |
tree | 3521ac94804e1108e4aa2d98a247758724ebfd24 | |
parent | 958048faf2a28264047c20fa470d3b24bb3c2811 (diff) |
loplugin:implicitboolconversion clean-up
Change-Id: If12ec14db83001fe2b51bda25fc71302953d0496
-rw-r--r-- | sd/source/filter/eppt/pptexanimations.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptexanimations.cxx b/sd/source/filter/eppt/pptexanimations.cxx index eeb4bc3878e4..3dbbe1039df6 100644 --- a/sd/source/filter/eppt/pptexanimations.cxx +++ b/sd/source/filter/eppt/pptexanimations.cxx @@ -1059,7 +1059,7 @@ sal_Int16 AnimationExporter::exportAnimPropertySet( SvStream& rStrm, const Refer { bool bAfterEffect = false; if ( *pAny[ DFF_ANIM_AFTEREFFECT ] >>= bAfterEffect ) - exportAnimPropertyByte( rStrm, DFF_ANIM_AFTEREFFECT, bAfterEffect, TRANSLATE_NONE ); + exportAnimPropertyByte( rStrm, DFF_ANIM_AFTEREFFECT, int(bAfterEffect), TRANSLATE_NONE ); } if ( pAny[ DFF_ANIM_RUNTIMECONTEXT ] ) |