summaryrefslogtreecommitdiff
path: root/sc/source/ui/drawfunc/fumark.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-17 15:33:39 +0200
committerNoel Grandin <noel@peralex.com>2014-02-18 10:08:01 +0200
commit2ad9585ab8f199ea937401817765d5fc7fd91c3f (patch)
tree82dfec5d112b352ac8d082a975a7a437e3872ecf /sc/source/ui/drawfunc/fumark.cxx
parentdb448b707601ea0172b023aa3ae54279f4f1de0d (diff)
sal_Bool->bool
Change-Id: I906c191f2adb50419952993d4cb946e097d4e5f7
Diffstat (limited to 'sc/source/ui/drawfunc/fumark.cxx')
-rw-r--r--sc/source/ui/drawfunc/fumark.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/drawfunc/fumark.cxx b/sc/source/ui/drawfunc/fumark.cxx
index cdea6a38c32e..0b9ea822e313 100644
--- a/sc/source/ui/drawfunc/fumark.cxx
+++ b/sc/source/ui/drawfunc/fumark.cxx
@@ -63,18 +63,18 @@ FuMarkRect::~FuMarkRect()
|*
\************************************************************************/
-sal_Bool FuMarkRect::MouseButtonDown(const MouseEvent& rMEvt)
+bool FuMarkRect::MouseButtonDown(const MouseEvent& rMEvt)
{
// remember button state for creation of own MouseEvents
SetMouseButtonCode(rMEvt.GetButtons());
pWindow->CaptureMouse();
pView->UnmarkAll(); // der Einheitlichkeit halber und wegen #50558#
- bStartDrag = sal_True;
+ bStartDrag = true;
aBeginPos = pWindow->PixelToLogic( rMEvt.GetPosPixel() );
aZoomRect = Rectangle( aBeginPos, Size() );
- return sal_True;
+ return true;
}
/*************************************************************************