diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-03 15:52:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-04 13:44:15 +0200 |
commit | 749fa381364c708f817ab57f6639c4f80fa9ff2b (patch) | |
tree | 2bb2dbae697810534d71838bfd0e75a9d19de6ed /svl | |
parent | 3d747045a834e5355df27b7879292abf50e2ca0e (diff) |
svl/visitem: sal_Bool->bool
Change-Id: I3d6ceb4dc8cea901a5b1cdcf00efa9074c75cca0
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/visitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/visitem.cxx b/svl/source/items/visitem.cxx index c1bf1f654cbb..6e96def23d51 100644 --- a/svl/source/items/visitem.cxx +++ b/svl/source/items/visitem.cxx @@ -101,7 +101,7 @@ sal_uInt16 SfxVisibilityItem::GetValueCount() const } // virtual -OUString SfxVisibilityItem::GetValueTextByVal(sal_Bool bTheValue) const +OUString SfxVisibilityItem::GetValueTextByVal(bool bTheValue) const { return bTheValue ? OUString("TRUE") : OUString("FALSE"); } |