summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuoutl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-24 10:52:02 +0200
committerNoel Grandin <noel@peralex.com>2014-04-24 10:53:17 +0200
commitb45a12c37d2b671e54404afda5dee1b0947bd3ed (patch)
tree484fa50da87e5434970c774527a77e0dd079e1b9 /sd/source/ui/func/fuoutl.cxx
parente4e654e40575300eaab429a6b94348bf43b9d7ce (diff)
sd: sal_Bool->bool
Change-Id: I3172a42f6b6abe434ffe0475d1201ff50b6c06ea
Diffstat (limited to 'sd/source/ui/func/fuoutl.cxx')
-rw-r--r--sd/source/ui/func/fuoutl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/func/fuoutl.cxx b/sd/source/ui/func/fuoutl.cxx
index 23d2a3754597..c9ba61135bba 100644
--- a/sd/source/ui/func/fuoutl.cxx
+++ b/sd/source/ui/func/fuoutl.cxx
@@ -43,9 +43,9 @@ FuOutline::FuOutline (
/**
* forward to OutlinerView
*/
-sal_Bool FuOutline::Command(const CommandEvent& rCEvt)
+bool FuOutline::Command(const CommandEvent& rCEvt)
{
- sal_Bool bResult = sal_False;
+ bool bResult = false;
OutlinerView* pOlView =
static_cast<OutlineView*>(mpView)->GetViewByWindow(mpWindow);
@@ -54,7 +54,7 @@ sal_Bool FuOutline::Command(const CommandEvent& rCEvt)
if (pOlView)
{
pOlView->Command(rCEvt); // unfortunately, we do not get a return value
- bResult = sal_True;
+ bResult = true;
}
return bResult;
}