diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-02-25 10:56:06 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-02-25 10:56:51 +0900 |
commit | 359b0ebc911b3bba30d0bb715a49ba335c413d28 (patch) | |
tree | 4d4179daa7df69591453b89cb899e8470730dded /sw/source/ui/utlui/shdwcrsr.cxx | |
parent | 227be92635a6c1a1cc46b2b547eccd5a1a8cd583 (diff) |
sal_Bool to bool
Change-Id: Iee9b03c8c5e8c226710822108b3503b0ee4f9717
Diffstat (limited to 'sw/source/ui/utlui/shdwcrsr.cxx')
-rw-r--r-- | sw/source/ui/utlui/shdwcrsr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/utlui/shdwcrsr.cxx b/sw/source/ui/utlui/shdwcrsr.cxx index 33dd53874f1c..e0f1facbfe4c 100644 --- a/sw/source/ui/utlui/shdwcrsr.cxx +++ b/sw/source/ui/utlui/shdwcrsr.cxx @@ -48,7 +48,7 @@ void SwShadowCursor::SetPos( const Point& rPt, long nHeight, sal_uInt16 nMode ) } } -void SwShadowCursor::DrawTri( const Point& rPt, long nHeight, sal_Bool bLeft ) +void SwShadowCursor::DrawTri( const Point& rPt, long nHeight, bool bLeft ) { long nLineDiff = ( nHeight / 2 ); long nLineDiffHalf = nLineDiff / 2; @@ -84,9 +84,9 @@ void SwShadowCursor::DrawCrsr( const Point& rPt, long nHeight, sal_uInt16 nMode // 2. das Dreieck if( text::HoriOrientation::LEFT == nMode || text::HoriOrientation::CENTER == nMode ) // Pfeil nach rechts - DrawTri( rPt, nHeight, sal_False ); + DrawTri( rPt, nHeight, false ); if( text::HoriOrientation::RIGHT == nMode || text::HoriOrientation::CENTER == nMode ) // Pfeil nach links - DrawTri( rPt, nHeight, sal_True ); + DrawTri( rPt, nHeight, true ); pWin->Pop(); } |