diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-01 11:32:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-03 09:17:48 +0200 |
commit | 728f60365cbdb96e75796677fca591e9445898c9 (patch) | |
tree | 2237786f83e50e6d80a8b7e65c454ee2e1f095c1 /sc/source | |
parent | 8d6a99f67edc3be61f1294f963c3bbbd2b7344f6 (diff) |
svx: sal_Bool->boo
Change-Id: I305ccda011463a3b24de48fae168ffae4da264c1
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/drawfunc/fupoor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/drawfunc/fupoor.cxx b/sc/source/ui/drawfunc/fupoor.cxx index 775297389339..2a6a00b2b942 100644 --- a/sc/source/ui/drawfunc/fupoor.cxx +++ b/sc/source/ui/drawfunc/fupoor.cxx @@ -191,7 +191,7 @@ sal_uInt8 FuPoor::Command(const CommandEvent& rCEvt) OutlinerView* pOutView = pView->GetTextEditOutlinerView(); if ( pOutView ) - return pOutView->HasSelection() ? pView->Command(rCEvt,pWindow) : SC_CMD_NONE; + return pOutView->HasSelection() ? (pView->Command(rCEvt,pWindow) ? 1 : 0) : SC_CMD_NONE; else return pView->Command(rCEvt,pWindow); } |