summaryrefslogtreecommitdiff
path: root/sw/source/ui/chrdlg/pardlg.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-07-01 15:28:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-07-01 15:28:31 +0200
commit363e39d63621b6c7017854ca5bb2f7668bb35846 (patch)
treef4f3bafa089ea3225ef084178898532f765bc64a /sw/source/ui/chrdlg/pardlg.cxx
parentf38ab34213e5738e42c4572f0a06cf239b9005e8 (diff)
loplugin:literaltoboolconversion
Change-Id: Ic598101a768874d8f72c7fedaf26adb955d99669
Diffstat (limited to 'sw/source/ui/chrdlg/pardlg.cxx')
-rw-r--r--sw/source/ui/chrdlg/pardlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/chrdlg/pardlg.cxx b/sw/source/ui/chrdlg/pardlg.cxx
index c805b8bd0347..9be12488b524 100644
--- a/sw/source/ui/chrdlg/pardlg.cxx
+++ b/sw/source/ui/chrdlg/pardlg.cxx
@@ -225,11 +225,11 @@ void SwParaDlg::PageCreated(sal_uInt16 nId, SfxTabPage& rPage)
{
// Seitenumbruch nur, wenn der Cursor im Body-Bereich und nicht in
// einer Tabelle steht
- const sal_uInt16 eType = rSh.GetFrmType(0,sal_True);
+ const sal_uInt16 eType = rSh.GetFrmType(0,true);
if(!(FRMTYPE_BODY & eType) ||
rSh.GetSelectionType() & nsSelectionType::SEL_TBL)
{
- aSet.Put(SfxBoolItem(SID_DISABLE_SVXEXTPARAGRAPHTABPAGE_PAGEBREAK,sal_True));
+ aSet.Put(SfxBoolItem(SID_DISABLE_SVXEXTPARAGRAPHTABPAGE_PAGEBREAK,true));
rPage.PageCreated(aSet);
}
}