diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-05 07:57:55 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-07 19:06:12 -0500 |
commit | f9966ea331e9ca05127b72c15292e38bf00951a4 (patch) | |
tree | e8d0e9de8f1369ee1e8b35f5dabf8bee13a6f547 /sw/inc/crsrsh.hxx | |
parent | 88b6420dc574f82c6ce9db698521d36ad9b51261 (diff) |
FASTBOOL to bool conversion
Diffstat (limited to 'sw/inc/crsrsh.hxx')
-rw-r--r-- | sw/inc/crsrsh.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx index 22cb3613502e..02bc0fcacd27 100644 --- a/sw/inc/crsrsh.hxx +++ b/sw/inc/crsrsh.hxx @@ -667,7 +667,7 @@ public: const SwShellCrsr* getShellCrsr( bool bBlock ) const { return (const_cast<SwCrsrShell*>(this))->getShellCrsr( bBlock ); } - FASTBOOL IsBlockMode() const { return 0 != pBlockCrsr; } + bool IsBlockMode() const { return 0 != pBlockCrsr; } const IBlockCursor* GetBlockCrsr() const { return pBlockCrsr; } IBlockCursor* GetBlockCrsr() { return pBlockCrsr; } |