summaryrefslogtreecommitdiff
path: root/sw/inc/crsrsh.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-22 11:31:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-22 11:39:21 +0100
commit7cb3e55bf03c49608e2b54b5d90eddd423a0f891 (patch)
treeebf890a12be682f3f39dc4c7973b3288fad161f9 /sw/inc/crsrsh.hxx
parent747ba6295d22c2e65be984cd750f240dc106482b (diff)
bool improvements
Change-Id: Ib65a1e987ad6511e90fd66a36c0105593a1df27c
Diffstat (limited to 'sw/inc/crsrsh.hxx')
-rw-r--r--sw/inc/crsrsh.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx
index 4bcbf35262ca..978d6b6c642d 100644
--- a/sw/inc/crsrsh.hxx
+++ b/sw/inc/crsrsh.hxx
@@ -587,7 +587,7 @@ public:
inline const SwTableNode* IsCrsrInTbl( sal_Bool bIsPtInTbl = sal_True ) const;
inline Point& GetCrsrDocPos( sal_Bool bPoint = sal_True ) const;
- inline sal_Bool IsCrsrPtAtEnd() const;
+ inline bool IsCrsrPtAtEnd() const;
inline const SwPaM* GetTblCrs() const;
inline SwPaM* GetTblCrs();
@@ -897,7 +897,7 @@ inline const SwTableNode* SwCrsrShell::IsCrsrInTbl( sal_Bool bIsPtInTbl ) const
return m_pCurCrsr->GetNode( bIsPtInTbl )->FindTableNode();
}
-inline sal_Bool SwCrsrShell::IsCrsrPtAtEnd() const
+inline bool SwCrsrShell::IsCrsrPtAtEnd() const
{
return m_pCurCrsr->End() == m_pCurCrsr->GetPoint();
}