diff options
Diffstat (limited to 'sd/source/ui/func/fuoutl.cxx')
-rw-r--r-- | sd/source/ui/func/fuoutl.cxx | 6 |
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; } |