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 /svl/source/items | |
parent | f348749a83cb985c5bf40603a0c8b4e3b5950eab (diff) |
sal_Bool to bool
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
Diffstat (limited to 'svl/source/items')
-rw-r--r-- | svl/source/items/itemset.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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() ) |