summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-20 14:17:27 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 12:19:24 +0200
commitb7180bd14fb5684886f8f90dbd1fa59bf6f0193a (patch)
treef9d36ff11842732fb75de35f2de2dff6c686761e /svx
parent7e06ccad8f4d654585f3aa6dbdf2933370d60756 (diff)
editeng: sal_Bool->bool
Change-Id: Ia9b76985ea0b9c511208b8283c8487c89aa67b88
Diffstat (limited to 'svx')
-rw-r--r--svx/source/unodraw/unoshtxt.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/unodraw/unoshtxt.cxx b/svx/source/unodraw/unoshtxt.cxx
index 3e47bda3e1f3..eb3dcb39cdc9 100644
--- a/svx/source/unodraw/unoshtxt.cxx
+++ b/svx/source/unodraw/unoshtxt.cxx
@@ -607,9 +607,9 @@ SvxTextForwarder* SvxTextEditSourceImpl::GetBackgroundTextForwarder()
mpOutliner->SetTextObjNoInit( pTextObj );
if( mbIsLocked )
{
- ((EditEngine*)&(mpOutliner->GetEditEngine()))->SetUpdateMode( sal_False );
+ ((EditEngine*)&(mpOutliner->GetEditEngine()))->SetUpdateMode( false );
mbOldUndoMode = ((EditEngine*)&(mpOutliner->GetEditEngine()))->IsUndoEnabled();
- ((EditEngine*)&(mpOutliner->GetEditEngine()))->EnableUndo( sal_False );
+ ((EditEngine*)&(mpOutliner->GetEditEngine()))->EnableUndo( false );
}
if ( !m_xLinguServiceManager.is() )
@@ -904,9 +904,9 @@ void SvxTextEditSourceImpl::lock()
mbIsLocked = true;
if( mpOutliner )
{
- ((EditEngine*)&(mpOutliner->GetEditEngine()))->SetUpdateMode( sal_False );
+ ((EditEngine*)&(mpOutliner->GetEditEngine()))->SetUpdateMode( false );
mbOldUndoMode = ((EditEngine*)&(mpOutliner->GetEditEngine()))->IsUndoEnabled();
- ((EditEngine*)&(mpOutliner->GetEditEngine()))->EnableUndo( sal_False );
+ ((EditEngine*)&(mpOutliner->GetEditEngine()))->EnableUndo( false );
}
}
@@ -922,7 +922,7 @@ void SvxTextEditSourceImpl::unlock()
if( mpOutliner )
{
- ((EditEngine*)&(mpOutliner->GetEditEngine()))->SetUpdateMode( sal_True );
+ ((EditEngine*)&(mpOutliner->GetEditEngine()))->SetUpdateMode( true );
((EditEngine*)&(mpOutliner->GetEditEngine()))->EnableUndo( mbOldUndoMode );
}
}