diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-03-04 23:11:48 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-03-04 23:14:41 +0900 |
commit | ce33f85ffdb8612c9fba9356acdaa93a08a9ba41 (patch) | |
tree | 26f5c53749cbefe24c8bfe0380e553131ef285a6 /oox | |
parent | f348749a83cb985c5bf40603a0c8b4e3b5950eab (diff) |
sal_Bool to bool
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/textrun.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/textrun.cxx b/oox/source/drawingml/textrun.cxx index e5ab05dba2e3..6193cf0c244b 100644 --- a/oox/source/drawingml/textrun.cxx +++ b/oox/source/drawingml/textrun.cxx @@ -83,7 +83,7 @@ sal_Int32 TextRun::insertAt( aTextCharacterProps.maLatinFont.getFontData( aLatinFontName, nLatinFontPitch, nLatinFontFamily, rFilterBase ); sal_Int32 nIndex = 0; - while ( sal_True ) + while ( true ) { sal_Int32 nCount = 0; sal_Bool bSymbol = ( getText()[ nIndex ] & 0xff00 ) == 0xf000; |