summaryrefslogtreecommitdiff
path: root/svl
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 /svl
parentf348749a83cb985c5bf40603a0c8b4e3b5950eab (diff)
sal_Bool to bool
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
Diffstat (limited to 'svl')
-rw-r--r--svl/source/filerec/filerec.cxx2
-rw-r--r--svl/source/items/itemset.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx
index a90c14135bc0..1787bf86fcb7 100644
--- a/svl/source/filerec/filerec.cxx
+++ b/svl/source/filerec/filerec.cxx
@@ -195,7 +195,7 @@ SfxMiniRecordReader::SfxMiniRecordReader
sal_uInt32 nStartPos = pStream->Tell();
// passenden Record suchen
- while(sal_True)
+ while(true)
{
// Header lesen
DBG( DbgOutf( "SfxFileRec: searching record at %ul", pStream->Tell() ) );
diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx
index dbe5140eaf83..ae63c18753b1 100644
--- a/svl/source/items/itemset.cxx
+++ b/svl/source/items/itemset.cxx
@@ -1111,7 +1111,7 @@ void SfxItemSet::Intersect( const SfxItemSet& rSet )
{
SfxItemIter aIter( *this );
const SfxPoolItem* pItem = aIter.GetCurItem();
- while( sal_True )
+ while( true )
{
sal_uInt16 nWhich = IsInvalidItem( pItem )
? GetWhichByPos( aIter.GetCurPos() )
@@ -1182,7 +1182,7 @@ void SfxItemSet::Differentiate( const SfxItemSet& rSet )
{
SfxItemIter aIter( *this );
const SfxPoolItem* pItem = aIter.GetCurItem();
- while( sal_True )
+ while( true )
{
sal_uInt16 nWhich = IsInvalidItem( pItem )
? GetWhichByPos( aIter.GetCurPos() )