summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-04 12:50:20 +0200
committerNoel Grandin <noel@peralex.com>2014-04-04 13:44:18 +0200
commita20b62dac893af02cda0972f1c43cbf8377080cf (patch)
treee4881ec792f215b80152add7731ec73f1ea96acd /svl
parent20f14ed4a1c65dfadc1d8cfe0157f4a5f7ba4eb6 (diff)
svl/eitem.hxx: sal_Bool->bool
Change-Id: I45dfd2429a490af3cc80f51340e0c05a91425668
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/cenumitm.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/cenumitm.cxx b/svl/source/items/cenumitm.cxx
index 180d54e6309b..d0213a5ab228 100644
--- a/svl/source/items/cenumitm.cxx
+++ b/svl/source/items/cenumitm.cxx
@@ -109,7 +109,7 @@ bool SfxEnumItemInterface::GetBoolValue() const
}
// virtual
-void SfxEnumItemInterface::SetBoolValue(sal_Bool)
+void SfxEnumItemInterface::SetBoolValue(bool)
{}
SfxEnumItem::SfxEnumItem(sal_uInt16 const nWhich, SvStream & rStream)
@@ -228,7 +228,7 @@ sal_uInt16 SfxBoolItem::GetValueCount() const
}
// virtual
-OUString SfxBoolItem::GetValueTextByVal(sal_Bool bTheValue) const
+OUString SfxBoolItem::GetValueTextByVal(bool bTheValue) const
{
return bTheValue ? OUString("TRUE") : OUString("FALSE");
}