diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-04 13:06:24 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-04 13:11:31 +0300 |
commit | 14c8a75cf3f869d08097ac1f3bce4e1bc369ff6d (patch) | |
tree | 0e2e67b7297b446aa2448c9e0f60872f3c7f88ef /svl | |
parent | a2623000c16d9f02bb945559a91d5bd76651772a (diff) |
WaE: '==' : unsafe mix of type 'bool' and type 'sal_Bool' in operation
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/poolio.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/poolio.cxx b/svl/source/items/poolio.cxx index 51744980705c..eb84af50e9d1 100644 --- a/svl/source/items/poolio.cxx +++ b/svl/source/items/poolio.cxx @@ -196,7 +196,7 @@ SvStream &SfxItemPool::Store(SvStream &rStream) const // !poolable wird gar nicht im Pool gespeichert // und itemsets/plain-items je nach Runde if ( *itrArr && IsItemFlag(**ppDefItem, SFX_ITEM_POOLABLE) && - pImp->bInSetItem == (*ppDefItem)->ISA(SfxSetItem) ) + pImp->bInSetItem == (bool) (*ppDefItem)->ISA(SfxSetItem) ) { // eigene Kennung, globale Which-Id und Item-Version sal_uInt16 nSlotId = GetSlotId( (*ppDefItem)->Which(), sal_False ); |