summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuoutl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/func/fuoutl.cxx')
-rwxr-xr-xsd/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 c0ef53f144b3..e4d263a1e4a6 100755
--- a/sd/source/ui/func/fuoutl.cxx
+++ b/sd/source/ui/func/fuoutl.cxx
@@ -66,9 +66,9 @@ FuOutline::FuOutline (
|*
\************************************************************************/
-BOOL FuOutline::Command(const CommandEvent& rCEvt)
+sal_Bool FuOutline::Command(const CommandEvent& rCEvt)
{
- BOOL bResult = FALSE;
+ sal_Bool bResult = sal_False;
OutlinerView* pOlView =
static_cast<OutlineView*>(mpView)->GetViewByWindow(mpWindow);
@@ -77,7 +77,7 @@ BOOL FuOutline::Command(const CommandEvent& rCEvt)
if (pOlView)
{
pOlView->Command(rCEvt); // liefert leider keinen Returnwert
- bResult = TRUE;
+ bResult = sal_True;
}
return bResult;
}