From a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 4 Apr 2014 15:53:21 +0200 Subject: framework: sal_Bool->bool Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25 --- framework/source/uielement/toolbarwrapper.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'framework/source/uielement/toolbarwrapper.cxx') diff --git a/framework/source/uielement/toolbarwrapper.cxx b/framework/source/uielement/toolbarwrapper.cxx index aa9e5ec85d3b..1c3ec89aac89 100644 --- a/framework/source/uielement/toolbarwrapper.cxx +++ b/framework/source/uielement/toolbarwrapper.cxx @@ -123,7 +123,7 @@ void SAL_CALL ToolBarWrapper::initialize( const Sequence< Any >& aArguments ) th { UIConfigElementWrapperBase::initialize( aArguments ); - sal_Bool bPopupMode( sal_False ); + bool bPopupMode( false ); for ( sal_Int32 i = 0; i < aArguments.getLength(); i++ ) { PropertyValue aPropValue; @@ -286,14 +286,14 @@ throw (::com::sun::star::uno::RuntimeException, std::exception) void SAL_CALL ToolBarWrapper::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const com::sun::star::uno::Any& aValue ) throw( com::sun::star::uno::Exception, std::exception ) { SolarMutexResettableGuard aLock; - sal_Bool bNoClose( m_bNoClose ); + bool bNoClose( m_bNoClose ); aLock.clear(); UIConfigElementWrapperBase::setFastPropertyValue_NoBroadcast( nHandle, aValue ); aLock.reset(); - sal_Bool bNewNoClose( m_bNoClose ); + bool bNewNoClose( m_bNoClose ); if ( m_xToolBarManager.is() && !m_bDisposed && ( bNewNoClose != bNoClose )) { ToolBarManager* pToolBarManager = static_cast< ToolBarManager *>( m_xToolBarManager.get() ); -- cgit