summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-03-04 23:11:48 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-03-04 23:14:41 +0900
commitce33f85ffdb8612c9fba9356acdaa93a08a9ba41 (patch)
tree26f5c53749cbefe24c8bfe0380e553131ef285a6 /lotuswordpro
parentf348749a83cb985c5bf40603a0c8b4e3b5950eab (diff)
sal_Bool to bool
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/explode.cxx2
-rw-r--r--lotuswordpro/source/filter/lwppara.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/explode.cxx b/lotuswordpro/source/filter/explode.cxx
index 625d1cf1b0b6..72544255a35f 100644
--- a/lotuswordpro/source/filter/explode.cxx
+++ b/lotuswordpro/source/filter/explode.cxx
@@ -224,7 +224,7 @@ sal_Int32 Decompression::explode()
m_nOutputBufferPos = 0;
/* Now, a bit stream follows, which is decoded as described below: */
/* The algorithm terminates as soon as it runs out of bits. */
- while(sal_True)
+ while(true)
{
// read 1 bit (take bits from the lowest value (LSB) to the MSB i.e. bit 0, bit 1 etc ...)
sal_uInt32 iBit;
diff --git a/lotuswordpro/source/filter/lwppara.cxx b/lotuswordpro/source/filter/lwppara.cxx
index 0059f592f00a..e274aa37cfb5 100644
--- a/lotuswordpro/source/filter/lwppara.cxx
+++ b/lotuswordpro/source/filter/lwppara.cxx
@@ -588,7 +588,7 @@ void LwpPara::RegisterStyle()
}
bHeading = pNumbering->IsHeading();
- while(sal_True)
+ while(true)
{
/*// When we hit the hint paragraph, we can stop and check the hint.
if (qNumberHint && (qPara == qNumberHint->GetPara()) &&