diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-26 14:11:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-27 12:30:30 +0200 |
commit | 015b80e852f2292fc12f3e209726178f05d95e3c (patch) | |
tree | 8c870efbc28cc329f6505f88a320a70563e03d53 /editeng/source/misc | |
parent | c521f0720800a943fedffdc102aa51e09008c677 (diff) |
editeng: sal_Bool->bool
Change-Id: I9e27453f0b77a23ae3d811f0a50a85d3fdf80978
Diffstat (limited to 'editeng/source/misc')
-rw-r--r-- | editeng/source/misc/txtrange.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/misc/txtrange.cxx b/editeng/source/misc/txtrange.cxx index 1790b82bb5d4..4b6b11a37fe6 100644 --- a/editeng/source/misc/txtrange.cxx +++ b/editeng/source/misc/txtrange.cxx @@ -30,7 +30,7 @@ TextRanger::TextRanger( const basegfx::B2DPolyPolygon& rPolyPolygon, const basegfx::B2DPolyPolygon* pLinePolyPolygon, sal_uInt16 nCacheSz, sal_uInt16 nLft, sal_uInt16 nRght, - sal_Bool bSimpl, sal_Bool bInnr, sal_Bool bVert ) : + bool bSimpl, bool bInnr, bool bVert ) : pBound( NULL ), nCacheSize( nCacheSz ), nRight( nRght ), @@ -81,7 +81,7 @@ TextRanger::~TextRanger() If there's is a change in the writing direction, the cache has to be cleared. */ -void TextRanger::SetVertical( sal_Bool bNew ) +void TextRanger::SetVertical( bool bNew ) { if( IsVertical() != bNew ) { |