summaryrefslogtreecommitdiff
path: root/sfx2/source
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 /sfx2/source
parent20f14ed4a1c65dfadc1d8cfe0157f4a5f7ba4eb6 (diff)
svl/eitem.hxx: sal_Bool->bool
Change-Id: I45dfd2429a490af3cc80f51340e0c05a91425668
Diffstat (limited to 'sfx2/source')
-rw-r--r--sfx2/source/control/bindings.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/bindings.cxx b/sfx2/source/control/bindings.cxx
index ff309bca02cb..73be886eb76a 100644
--- a/sfx2/source/control/bindings.cxx
+++ b/sfx2/source/control/bindings.cxx
@@ -1239,7 +1239,7 @@ void SfxBindings::Execute_Impl( SfxRequest& aReq, const SfxSlot* pSlot, SfxShell
((SfxEnumItemInterface *)pNewItem)->HasBoolValue())
{
// and Enums with Bool-Interface
- ((SfxEnumItemInterface*)pNewItem)->SetBoolValue(sal_True);
+ ((SfxEnumItemInterface*)pNewItem)->SetBoolValue(true);
aReq.AppendItem( *pNewItem );
}
else {