From 1e50f7892705c64db0ffec06b651cd280e9a7f8f Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Mon, 25 Mar 2013 10:51:15 +0900 Subject: sal_Bool to bool Change-Id: Ibc63340b3ae431c7cdac78893dbdd1989ebe5ff9 --- basic/source/basmgr/basmgr.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basic') diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx index 70775ae22ffc..8f52b1fce43b 100644 --- a/basic/source/basmgr/basmgr.cxx +++ b/basic/source/basmgr/basmgr.cxx @@ -256,7 +256,7 @@ void SAL_CALL BasMgrContainerListenerImpl::disposing( const lang::EventObject& S void SAL_CALL BasMgrContainerListenerImpl::elementInserted( const container::ContainerEvent& Event ) throw( uno::RuntimeException ) { - sal_Bool bLibContainer = maLibName.isEmpty(); + bool bLibContainer = maLibName.isEmpty(); OUString aName; Event.Accessor >>= aName; @@ -308,7 +308,7 @@ void SAL_CALL BasMgrContainerListenerImpl::elementReplaced( const container::Con // Replace not possible for library container #ifdef DBG_UTIL - sal_Bool bLibContainer = maLibName.isEmpty(); + bool bLibContainer = maLibName.isEmpty(); #endif DBG_ASSERT( !bLibContainer, "library container fired elementReplaced()"); @@ -336,7 +336,7 @@ void SAL_CALL BasMgrContainerListenerImpl::elementRemoved( const container::Cont OUString aName; Event.Accessor >>= aName; - sal_Bool bLibContainer = maLibName.isEmpty(); + bool bLibContainer = maLibName.isEmpty(); if( bLibContainer ) { StarBASIC* pLib = mpMgr->GetLib( aName ); -- cgit