summaryrefslogtreecommitdiff
path: root/sw/inc/viscrs.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-10-07 09:44:43 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-10-07 09:54:01 +0900
commit701db391b3d3b689af4ca5ab9d67c35b2459c1b3 (patch)
tree16ca7ede96c5cacfa8bba8f62acff188af7d558d /sw/inc/viscrs.hxx
parent8a2f3de3ef1bee204ec1f94493753bd076ff1f6b (diff)
sal_Bool to bool
Change-Id: Ieeebcd89ae2728c6314f28413759bbb353c327bf
Diffstat (limited to 'sw/inc/viscrs.hxx')
-rw-r--r--sw/inc/viscrs.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/viscrs.hxx b/sw/inc/viscrs.hxx
index f8b274bfaa83..f9ef4eafd458 100644
--- a/sw/inc/viscrs.hxx
+++ b/sw/inc/viscrs.hxx
@@ -43,8 +43,8 @@ class SwVisCrsr
friend void _InitCore();
friend void _FinitCore();
- sal_Bool bIsVisible : 1;
- sal_Bool bIsDragCrsr : 1;
+ bool bIsVisible : 1;
+ bool bIsDragCrsr : 1;
Cursor aTxtCrsr;
const SwCrsrShell* pCrsrShell;
@@ -58,8 +58,8 @@ public:
void Show();
void Hide();
- sal_Bool IsVisible() const { return bIsVisible; }
- void SetDragCrsr( sal_Bool bFlag = sal_True ) { bIsDragCrsr = bFlag; }
+ bool IsVisible() const { return bIsVisible; }
+ void SetDragCrsr( bool bFlag = true ) { bIsDragCrsr = bFlag; }
};