summaryrefslogtreecommitdiff
path: root/sd/source/ui/animations/SlideTransitionPane.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:00:21 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:23 +0100
commit608953c42590c3100eaa46ba686560403d1b8d03 (patch)
treea0b706f6199e17174fc61b8948c5b63e8490ff72 /sd/source/ui/animations/SlideTransitionPane.cxx
parente7d1a81ee3befa9e9444fe5bf5c4ced9c98eecf5 (diff)
bool improvements
Change-Id: Icac34936bdb551ad517170fd497212513719d2aa
Diffstat (limited to 'sd/source/ui/animations/SlideTransitionPane.cxx')
-rw-r--r--sd/source/ui/animations/SlideTransitionPane.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/animations/SlideTransitionPane.cxx b/sd/source/ui/animations/SlideTransitionPane.cxx
index 97783006139f..dcae7ebbaa0f 100644
--- a/sd/source/ui/animations/SlideTransitionPane.cxx
+++ b/sd/source/ui/animations/SlideTransitionPane.cxx
@@ -120,8 +120,8 @@ struct TransitionEffect
mfTime = 0.0;
mePresChange = PRESCHANGE_MANUAL;
mbSoundOn = sal_False;
- mbLoopSound = sal_False;
- mbStopSound = sal_False;
+ mbLoopSound = false;
+ mbStopSound = false;
mbEffectAmbiguous = false;
mbDurationAmbiguous = false;
@@ -170,12 +170,12 @@ struct TransitionEffect
{
if( mbStopSound )
{
- rOutPage.SetStopSound( sal_True );
+ rOutPage.SetStopSound( true );
rOutPage.SetSound( sal_False );
}
else
{
- rOutPage.SetStopSound( sal_False );
+ rOutPage.SetStopSound( false );
rOutPage.SetSound( mbSoundOn );
rOutPage.SetSoundFile( maSound );
}