summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-17 15:41:11 +0200
committerNoel Grandin <noel@peralex.com>2014-02-18 10:08:02 +0200
commitc73828ecac5159591d20e15347d6cc96badf4e58 (patch)
treeaff500710f9d40ac3e49a6d006b015872863e787 /sc
parent0e5e60eb5713953b0fa9f72d87958f83d89ade25 (diff)
sal_Bool->bool
Change-Id: I630f398abbe929f9f0b035b2410d92496b609528
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/drawfunc/fumark.cxx2
-rw-r--r--sc/source/ui/inc/fumark.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/drawfunc/fumark.cxx b/sc/source/ui/drawfunc/fumark.cxx
index 0b9ea822e313..0e600076857a 100644
--- a/sc/source/ui/drawfunc/fumark.cxx
+++ b/sc/source/ui/drawfunc/fumark.cxx
@@ -97,7 +97,7 @@ bool FuMarkRect::MouseMove(const MouseEvent& rMEvt)
aZoomRect = aRect;
aZoomRect.Justify();
pViewShell->DrawMarkRect(aZoomRect);
- bVisible = sal_True;
+ bVisible = true;
}
ForcePointer(&rMEvt);
diff --git a/sc/source/ui/inc/fumark.hxx b/sc/source/ui/inc/fumark.hxx
index e656fafebdda..1f831a9679a9 100644
--- a/sc/source/ui/inc/fumark.hxx
+++ b/sc/source/ui/inc/fumark.hxx
@@ -30,8 +30,8 @@ class FuMarkRect : public FuPoor
protected:
Point aBeginPos;
Rectangle aZoomRect;
- sal_Bool bVisible;
- sal_Bool bStartDrag;
+ bool bVisible;
+ bool bStartDrag;
ScRangeListRef aSourceRange;
public: