diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-29 10:55:26 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-29 10:57:17 +0900 |
commit | 6db0a5f381f206801035ab1d786dbac8c31cc5eb (patch) | |
tree | 60af9a26ece33d72960f00b4995564637cdff205 /sw/source/ui/ribbar | |
parent | ab8e37573628f2e5863e7fc0252103ab32203fc2 (diff) |
sal_Bool to bool
Change-Id: Iae6343a71137c5ffbc9d38f56c01d5b182975912
Diffstat (limited to 'sw/source/ui/ribbar')
-rw-r--r-- | sw/source/ui/ribbar/conrect.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/ui/ribbar/conrect.cxx b/sw/source/ui/ribbar/conrect.cxx index bb3cf919a27e..b5f61868b1d0 100644 --- a/sw/source/ui/ribbar/conrect.cxx +++ b/sw/source/ui/ribbar/conrect.cxx @@ -43,9 +43,9 @@ ConstRectangle::ConstRectangle( SwWrtShell* pWrtShell, SwEditWin* pEditWin, SwView* pSwView ) : SwDrawBase( pWrtShell, pEditWin, pSwView ), - bMarquee(sal_False), + bMarquee(false), // #93382# - mbVertical(sal_False) + mbVertical(false) { } @@ -151,8 +151,8 @@ sal_Bool ConstRectangle::MouseButtonUp(const MouseEvent& rMEvt) */ void ConstRectangle::Activate(const sal_uInt16 nSlotId) { - bMarquee = bCapVertical = sal_False; - mbVertical = sal_False; + bMarquee = bCapVertical = false; + mbVertical = false; switch (nSlotId) { @@ -169,12 +169,12 @@ void ConstRectangle::Activate(const sal_uInt16 nSlotId) break; case SID_DRAW_TEXT_MARQUEE: - bMarquee = sal_True; + bMarquee = true; m_pWin->SetSdrDrawMode(OBJ_TEXT); break; case SID_DRAW_TEXT_VERTICAL: - mbVertical = sal_True; + mbVertical = true; m_pWin->SetSdrDrawMode(OBJ_TEXT); break; @@ -183,7 +183,7 @@ void ConstRectangle::Activate(const sal_uInt16 nSlotId) break; case SID_DRAW_CAPTION_VERTICAL: - bCapVertical = sal_True; + bCapVertical = true; // no break case SID_DRAW_CAPTION: m_pWin->SetSdrDrawMode(OBJ_CAPTION); |