diff options
author | Mathias Bauer <mba@openoffice.org> | 2011-02-08 11:49:29 +0100 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2011-02-08 11:49:29 +0100 |
commit | 2785e67bbcd479f864ea941bfd9a47916fd04aa4 (patch) | |
tree | c3f6bd5574033791c339a005b948816a1fe75956 /sd/source/ui/func/fuoutl.cxx | |
parent | 865034108866bf3e1982d66a1e7f1f420ed0eebb (diff) | |
parent | 5f549ccb1c3d111317da4eaf943bdf9218d77766 (diff) |
CWS gnumake3: pull in cws removetooltypes01
Notes
Notes:
split repo tag: impress_ooo/DEV300_m100
Diffstat (limited to 'sd/source/ui/func/fuoutl.cxx')
-rwxr-xr-x | 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 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; } |