summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwplnopts.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 14:14:14 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:50 +0200
commit2692047aacef7b4288f995ce6ff2db5e16b71014 (patch)
tree2d43552ad1a01cfb6287d54f35b5ae3ca538393b /lotuswordpro/source/filter/lwplnopts.cxx
parentca56379f27c53d4fa015d7adbb9494186f506de6 (diff)
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwplnopts.cxx')
-rw-r--r--lotuswordpro/source/filter/lwplnopts.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwplnopts.cxx b/lotuswordpro/source/filter/lwplnopts.cxx
index 48ddbcc67004..b8f5a75a528c 100644
--- a/lotuswordpro/source/filter/lwplnopts.cxx
+++ b/lotuswordpro/source/filter/lwplnopts.cxx
@@ -84,13 +84,13 @@ void LwpLineNumberOptions::RegisterStyle()
pLineNumber->SetNumberOffset(LwpTools::ConvertFromUnitsToMetric(m_nDistance));
pLineNumber->SetNumberIncrement(m_nSeparator);
if (m_nFlags & LN_RESETEACHPAGE)
- pLineNumber->SetRestartOnPage(sal_True);
+ pLineNumber->SetRestartOnPage(true);
else
- pLineNumber->SetRestartOnPage(sal_False);
+ pLineNumber->SetRestartOnPage(false);
if (m_nFlags & LN_COUNTBLANKLINES)
- pLineNumber->SetCountEmptyLines(sal_True);
+ pLineNumber->SetCountEmptyLines(true);
else
- pLineNumber->SetCountEmptyLines(sal_False);
+ pLineNumber->SetCountEmptyLines(false);
XFStyleManager* pXFStyleManager = LwpGlobalMgr::GetInstance()->GetXFStyleManager();
pXFStyleManager->SetLineNumberConfig(pLineNumber);