summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-17 14:59:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-17 15:20:45 +0200
commit12685fe6b8c28ceeaacf590503c9c30ef64af3e9 (patch)
tree3521ac94804e1108e4aa2d98a247758724ebfd24 /sd/source
parent958048faf2a28264047c20fa470d3b24bb3c2811 (diff)
loplugin:implicitboolconversion clean-up
Change-Id: If12ec14db83001fe2b51bda25fc71302953d0496
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/filter/eppt/pptexanimations.cxx2
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 ] )