summaryrefslogtreecommitdiff
path: root/editeng/source/misc
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 /editeng/source/misc
parentf348749a83cb985c5bf40603a0c8b4e3b5950eab (diff)
sal_Bool to bool
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
Diffstat (limited to 'editeng/source/misc')
-rw-r--r--editeng/source/misc/svxacorr.cxx2
-rw-r--r--editeng/source/misc/txtrange.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index fb05f4d7c078..3c78120bc0c3 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1402,7 +1402,7 @@ sal_uLong SvxAutoCorrect::AutoCorrect( SvxAutoCorrDoc& rDoc, const String& rTxt,
nRet |= ChgToEnEmDash;
}
- } while( sal_False );
+ } while( false );
if( nRet )
{
diff --git a/editeng/source/misc/txtrange.cxx b/editeng/source/misc/txtrange.cxx
index 8ba40528e4e7..60a3fad9aa09 100644
--- a/editeng/source/misc/txtrange.cxx
+++ b/editeng/source/misc/txtrange.cxx
@@ -341,7 +341,7 @@ void SvxBoundArgs::Calc( const PolyPolygon& rPoly )
if( nCount > 1 )
{
sal_uInt16 nIdx = 1;
- while( sal_True )
+ while( true )
{
const Point& rLast = rPol[ nIdx - 1 ];
if( nIdx == nCount )