summaryrefslogtreecommitdiff
path: root/sw/inc/viscrs.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-03-11 09:10:39 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-03-16 09:39:13 +0100
commite2ae01d4b298c0224972a502ab9953831d60111d (patch)
tree88b6d364649885f1f32df8f8b3e3a58fe11c886d /sw/inc/viscrs.hxx
parent580dc29e60cacc0486eb87e9dc5f2c1ce8bb8893 (diff)
sal_Bool to bool
Change-Id: I6a1fb3daf5e41c55c2174ae5996302123e613511
Diffstat (limited to 'sw/inc/viscrs.hxx')
-rw-r--r--sw/inc/viscrs.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/viscrs.hxx b/sw/inc/viscrs.hxx
index 525e8f633ad4..89a0ffcc6c93 100644
--- a/sw/inc/viscrs.hxx
+++ b/sw/inc/viscrs.hxx
@@ -151,8 +151,8 @@ public:
bool UpDown( bool bUp, sal_uInt16 nCnt = 1 );
- // sal_True: Cursor can be set to this position.
- virtual sal_Bool IsAtValidPos( sal_Bool bPoint = sal_True ) const;
+ // true: Cursor can be set to this position.
+ virtual bool IsAtValidPos( bool bPoint = true ) const;
virtual bool IsReadOnlyAvailable() const;
@@ -175,7 +175,7 @@ public:
virtual void FillRects(); // For table and normal cursor.
// Check if SPoint is within table SSelection.
- sal_Bool IsInside( const Point& rPt ) const;
+ bool IsInside( const Point& rPt ) const;
virtual void SetMark();
virtual SwCursor* Create( SwPaM* pRing = 0 ) const;
@@ -183,8 +183,8 @@ public:
virtual short MaxReplaceArived(); //returns RET_YES/RET_CANCEL/RET_NO
virtual void SaveTblBoxCntnt( const SwPosition* pPos = 0 );
- // sal_True: Cursor can be set to this position.
- virtual sal_Bool IsAtValidPos( sal_Bool bPoint = sal_True ) const;
+ // true: Cursor can be set to this position.
+ virtual bool IsAtValidPos( bool bPoint = true ) const;
};