summaryrefslogtreecommitdiff
path: root/sw/source/ui/uiview
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-09-27 13:21:50 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-09-27 13:21:50 +0900
commit30d33b126f47021a99fb8ca63d6c6be29407e9cc (patch)
treec91e19e666d77dabed9253ae0d2eb51c7b2d200b /sw/source/ui/uiview
parent43ac04763d60ae651dc8f1a592cc2f0d41387a7d (diff)
sal_Bool to bool
Change-Id: Ic05d9f062e7419d192b8cf6e56c91b3f9d97bfe0
Diffstat (limited to 'sw/source/ui/uiview')
-rw-r--r--sw/source/ui/uiview/viewling.cxx4
1 files changed, 2 insertions, 2 deletions
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 )