summaryrefslogtreecommitdiffstats
path: root/svl
diff options
context:
space:
mode:
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/itempool.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx
index bb3ac17f417b..406b4a3db785 100644
--- a/svl/source/items/itempool.cxx
+++ b/svl/source/items/itempool.cxx
@@ -626,7 +626,7 @@ const SfxPoolItem& SfxItemPool::PutImpl( const SfxPoolItem& rItem, sal_uInt16 nW
if (it != rItemArr.end())
{
AddRef(rItem);
- assert(!bPassingOwnership && "cant be passing ownership and have the item already in the pool");
+ assert(!bPassingOwnership && "can't be passing ownership and have the item already in the pool");
return rItem;
}
}
@@ -651,7 +651,7 @@ const SfxPoolItem& SfxItemPool::PutImpl( const SfxPoolItem& rItem, sal_uInt16 nW
if (**itr == rItem)
{
AddRef(**itr);
- assert(!bPassingOwnership && "cant be passing ownership and have the item already in the pool");
+ assert(!bPassingOwnership && "can't be passing ownership and have the item already in the pool");
return **itr;
}
}
@@ -662,7 +662,7 @@ const SfxPoolItem& SfxItemPool::PutImpl( const SfxPoolItem& rItem, sal_uInt16 nW
SfxPoolItem* pNewItem;
if (bPassingOwnership)
{
- assert(!dynamic_cast<const SfxItemSet*>(&rItem) && "cant pass ownership of SfxItem, they need to be cloned to the master pool");
+ assert(!dynamic_cast<const SfxItemSet*>(&rItem) && "can't pass ownership of SfxItem, they need to be cloned to the master pool");
pNewItem = const_cast<SfxPoolItem*>(&rItem);
}
else