summaryrefslogtreecommitdiff
path: root/svl/source/items/sitem.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-02 12:56:48 +0200
committerNoel Grandin <noel@peralex.com>2014-04-03 09:17:52 +0200
commit0523304875cf810acb1ff7caf9c9a2ec5d982b70 (patch)
tree741920994ba1fb097e162ecbf2c8c60929536bd8 /svl/source/items/sitem.cxx
parentabc429987c6ce644658824fb20db113af855c8b2 (diff)
svl: sal_Bool->bool
Change-Id: I6938314a08d061d2b07d9129742d74a989bd1385
Diffstat (limited to 'svl/source/items/sitem.cxx')
-rw-r--r--svl/source/items/sitem.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/sitem.cxx b/svl/source/items/sitem.cxx
index dee7a63b805b..b91b42808df8 100644
--- a/svl/source/items/sitem.cxx
+++ b/svl/source/items/sitem.cxx
@@ -24,7 +24,7 @@
SfxSetItem::SfxSetItem( sal_uInt16 which, const SfxItemSet &rSet) :
SfxPoolItem(which),
- pSet(rSet.Clone(sal_True))
+ pSet(rSet.Clone(true))
{
}
@@ -41,7 +41,7 @@ SfxSetItem::SfxSetItem( sal_uInt16 which, SfxItemSet *pS) :
SfxSetItem::SfxSetItem( const SfxSetItem& rCopy, SfxItemPool *pPool ) :
SfxPoolItem(rCopy.Which()),
- pSet(rCopy.pSet->Clone(sal_True, pPool))
+ pSet(rCopy.pSet->Clone(true, pPool))
{
}