diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-04 15:53:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-07 13:53:49 +0200 |
commit | a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7 (patch) | |
tree | f0bb68a88c56647fc9165ec69cc05cd5bc441ea6 /framework/source/fwi/uielement | |
parent | c2e98d3cc9e2642d746a9933fcd91230a7378aa1 (diff) |
framework: sal_Bool->bool
Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25
Diffstat (limited to 'framework/source/fwi/uielement')
-rw-r--r-- | framework/source/fwi/uielement/constitemcontainer.cxx | 2 | ||||
-rw-r--r-- | framework/source/fwi/uielement/rootitemcontainer.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/fwi/uielement/constitemcontainer.cxx b/framework/source/fwi/uielement/constitemcontainer.cxx index 1f453922d435..00dd42f29bc7 100644 --- a/framework/source/fwi/uielement/constitemcontainer.cxx +++ b/framework/source/fwi/uielement/constitemcontainer.cxx @@ -122,7 +122,7 @@ ConstItemContainer::ConstItemContainer( const ItemContainer& rItemContainer ) copyItemContainer( rItemContainer.m_aItemVector ); } -ConstItemContainer::ConstItemContainer( const Reference< XIndexAccess >& rSourceContainer, sal_Bool bFastCopy ) +ConstItemContainer::ConstItemContainer( const Reference< XIndexAccess >& rSourceContainer, bool bFastCopy ) { // We also have to copy the UIName property try diff --git a/framework/source/fwi/uielement/rootitemcontainer.cxx b/framework/source/fwi/uielement/rootitemcontainer.cxx index 8eb4893e9d6d..3d52f89ef007 100644 --- a/framework/source/fwi/uielement/rootitemcontainer.cxx +++ b/framework/source/fwi/uielement/rootitemcontainer.cxx @@ -264,7 +264,7 @@ throw( com::sun::star::lang::IllegalArgumentException ) { // Initialize state with sal_False !!! // (Handle can be invalid) - sal_Bool bReturn = sal_False; + bool bReturn = false; switch( nHandle ) { |