summaryrefslogtreecommitdiff
path: root/sw/source/ui/shells/drwtxtex.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-02-15 00:40:26 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-02-15 10:53:37 +0900
commita4b4c0cdae9695f49d41f097fb891845b8e908f3 (patch)
tree218f9ee610ccac81a7a461ad92feee9fa8f6acda /sw/source/ui/shells/drwtxtex.cxx
parent4d7cb46fa2f9552aa479483bde2fcf9c31e2ee13 (diff)
sal_Bool to bool
Change-Id: Ibc0cd792ee0d21ad4ed2958bad66e2536eec5250
Diffstat (limited to 'sw/source/ui/shells/drwtxtex.cxx')
-rw-r--r--sw/source/ui/shells/drwtxtex.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/shells/drwtxtex.cxx b/sw/source/ui/shells/drwtxtex.cxx
index f2826c52ad39..ad921351ac3f 100644
--- a/sw/source/ui/shells/drwtxtex.cxx
+++ b/sw/source/ui/shells/drwtxtex.cxx
@@ -473,7 +473,7 @@ void SwDrawTextShell::Execute( SfxRequest &rReq )
SdrView* pTmpView = pSdrView;
pSdrView->SdrEndTextEdit(sal_True);
- sal_Bool bLeftToRight = nSlot == SID_ATTR_PARA_LEFT_TO_RIGHT;
+ bool bLeftToRight = nSlot == SID_ATTR_PARA_LEFT_TO_RIGHT;
const SfxPoolItem* pPoolItem;
if( pNewAttrs && SFX_ITEM_SET == pNewAttrs->GetItemState( nSlot, sal_True, &pPoolItem ) )
@@ -821,7 +821,7 @@ void SwDrawTextShell::ExecClpbrd(SfxRequest &rReq)
OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
ESelection aSel(pOLV->GetSelection());
- const sal_Bool bCopy = (aSel.nStartPara != aSel.nEndPara) || (aSel.nStartPos != aSel.nEndPos);
+ const bool bCopy = (aSel.nStartPara != aSel.nEndPara) || (aSel.nStartPos != aSel.nEndPos);
sal_uInt16 nId = rReq.GetSlot();
switch( nId )
{
@@ -855,7 +855,7 @@ void SwDrawTextShell::StateClpbrd(SfxItemSet &rSet)
OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
ESelection aSel(pOLV->GetSelection());
- const sal_Bool bCopy = (aSel.nStartPara != aSel.nEndPara) ||
+ const bool bCopy = (aSel.nStartPara != aSel.nEndPara) ||
(aSel.nStartPos != aSel.nEndPos);