From 30d33b126f47021a99fb8ca63d6c6be29407e9cc Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Thu, 27 Sep 2012 13:21:50 +0900 Subject: sal_Bool to bool Change-Id: Ic05d9f062e7419d192b8cf6e56c91b3f9d97bfe0 --- sw/source/ui/uiview/viewling.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/ui/uiview') diff --git a/sw/source/ui/uiview/viewling.cxx b/sw/source/ui/uiview/viewling.cxx index f98f78e031fd..1c8fd6eb4eec 100644 --- a/sw/source/ui/uiview/viewling.cxx +++ b/sw/source/ui/uiview/viewling.cxx @@ -472,7 +472,7 @@ void SwView::HyphenateDocument() pWrtShell->GetCrsr() != pWrtShell->GetCrsr()->GetNext(); sal_Bool bOther = pWrtShell->HasOtherCnt() && bHyphSpecial && !bSelection; sal_Bool bStart = bSelection || ( !bOther && pWrtShell->IsStartOfDoc() ); - sal_Bool bStop = sal_False; + bool bStop = false; if( !bOther && !(pWrtShell->GetFrmType(0,sal_True) & FRMTYPE_BODY) && !bSelection ) // kein Sonderbereich eingeschaltet { @@ -489,7 +489,7 @@ void SwView::HyphenateDocument() } } else - bStop = sal_True; // Nein Es wird nicht getrennt + bStop = true; // Nein Es wird nicht getrennt } if( !bStop ) -- cgit