summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/slide
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-24 11:37:39 +0200
committerNoel Grandin <noel@peralex.com>2014-04-30 08:43:41 +0200
commit7e9bb77c356e3888e4bf697f4ecd69e642211c75 (patch)
tree033158ea248762e6eab7aa9b79a70064f41766bb /slideshow/source/engine/slide
parent177d32b6b8f3dcc9c82330f710452020798b8342 (diff)
slideshow: sal_Bool->bool
Change-Id: I0a8886fe164989661add0665c4744fd17a9ef40c
Diffstat (limited to 'slideshow/source/engine/slide')
-rw-r--r--slideshow/source/engine/slide/targetpropertiescreator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/slide/targetpropertiescreator.cxx b/slideshow/source/engine/slide/targetpropertiescreator.cxx
index 5902c2980a27..52541bc07ebb 100644
--- a/slideshow/source/engine/slide/targetpropertiescreator.cxx
+++ b/slideshow/source/engine/slide/targetpropertiescreator.cxx
@@ -259,7 +259,7 @@ namespace internal
// initially. This is currently the only place
// where a shape effect influences shape
// attributes outside it's effective duration.
- sal_Bool bVisible( sal_False );
+ bool bVisible( false );
if( xAnimateNode->getAttributeName().equalsIgnoreAsciiCase("visibility") )
{
@@ -277,12 +277,12 @@ namespace internal
if( aString.equalsIgnoreAsciiCase("true") ||
aString.equalsIgnoreAsciiCase("on") )
{
- bVisible = sal_True;
+ bVisible = true;
}
if( aString.equalsIgnoreAsciiCase("false") ||
aString.equalsIgnoreAsciiCase("off") )
{
- bVisible = sal_False;
+ bVisible = false;
}
}
}