summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-29 11:04:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-29 11:08:32 +0100
commit612dac063a144506b44f4ab2afa2c5cdf9d882b4 (patch)
tree856ab6ea17ca4760995b8ca41766c5c0c2115de7
parent8a8ea11e5ea386af8b91b2ff36e5906afc571c2b (diff)
bool improvements
Change-Id: I0dc09b7a6ee2849bd0c2ffc31be45f81cd2c15ee
-rw-r--r--UnoControls/source/base/basecontrol.cxx2
-rw-r--r--avmedia/source/framework/soundhandler.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_baseresultset.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_preparedstatement.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_statement.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_updateableresultset.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_xbase.cxx2
-rw-r--r--embeddedobj/source/commonembedding/miscobj.cxx2
-rw-r--r--embedserv/source/embed/servprov.cxx2
-rw-r--r--extensions/source/ole/servprov.cxx2
-rw-r--r--framework/inc/macros/xtypeprovider.hxx2
-rw-r--r--framework/source/fwe/classes/actiontriggercontainer.cxx2
-rw-r--r--framework/source/fwe/classes/actiontriggerpropertyset.cxx2
-rw-r--r--framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx2
-rw-r--r--framework/source/fwe/classes/rootactiontriggercontainer.cxx2
-rw-r--r--framework/source/services/frame.cxx2
-rw-r--r--include/toolkit/helper/macros.hxx2
-rw-r--r--include/ucbhelper/macros.hxx2
-rw-r--r--pyuno/source/module/pyuno_adapter.cxx2
-rw-r--r--sfx2/source/dialog/backingcomp.cxx2
-rw-r--r--sfx2/source/doc/sfxbasemodel.cxx2
-rw-r--r--stoc/source/invocation/invocation.cxx2
-rw-r--r--svl/source/fsstor/fsstorage.cxx2
-rw-r--r--svl/source/fsstor/ostreamcontainer.cxx2
-rw-r--r--svtools/source/hatchwindow/hatchwindow.cxx2
-rw-r--r--svx/source/unodraw/unoshape.cxx4
-rw-r--r--toolkit/source/awt/vclxmenu.cxx4
-rw-r--r--toolkit/source/awt/vclxtopwindow.cxx4
-rw-r--r--ucb/source/ucp/file/filid.cxx2
-rw-r--r--ucb/source/ucp/ftp/ftpcontentidentifier.cxx2
-rw-r--r--ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx2
-rw-r--r--ucbhelper/source/provider/contentidentifier.cxx2
-rw-r--r--ucbhelper/source/provider/interactionrequest.cxx16
34 files changed, 44 insertions, 44 deletions
diff --git a/UnoControls/source/base/basecontrol.cxx b/UnoControls/source/base/basecontrol.cxx
index 9d07d2829333..08f4f6696a7f 100644
--- a/UnoControls/source/base/basecontrol.cxx
+++ b/UnoControls/source/base/basecontrol.cxx
@@ -182,7 +182,7 @@ Sequence< sal_Int8 > SAL_CALL BaseControl::getImplementationId() throw( RuntimeE
if ( pID == NULL )
{
// Create a new static ID ...
- static OImplementationId aID( sal_False );
+ static OImplementationId aID( false );
// ... and set his address to static pointer!
pID = &aID ;
}
diff --git a/avmedia/source/framework/soundhandler.cxx b/avmedia/source/framework/soundhandler.cxx
index f81df491d196..a1b0a8389f8f 100644
--- a/avmedia/source/framework/soundhandler.cxx
+++ b/avmedia/source/framework/soundhandler.cxx
@@ -85,7 +85,7 @@ css::uno::Sequence< sal_Int8 > SAL_CALL SoundHandler::getImplementationId() thro
if ( pID == NULL )
{
/* Create a new static ID ... */
- static ::cppu::OImplementationId aID( sal_False );
+ static ::cppu::OImplementationId aID( false );
/* ... and set his address to static pointer! */
pID = &aID ;
}
diff --git a/connectivity/source/drivers/postgresql/pq_baseresultset.cxx b/connectivity/source/drivers/postgresql/pq_baseresultset.cxx
index 1747909458b9..594fe1554447 100644
--- a/connectivity/source/drivers/postgresql/pq_baseresultset.cxx
+++ b/connectivity/source/drivers/postgresql/pq_baseresultset.cxx
@@ -224,7 +224,7 @@ Sequence< sal_Int8> BaseResultSet::getImplementationId() throw( RuntimeException
MutexGuard guard( osl::Mutex::getGlobalMutex() );
if( ! pId )
{
- static cppu::OImplementationId id(sal_False);
+ static cppu::OImplementationId id(false);
pId = &id;
}
}
diff --git a/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx b/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx
index bc6a2271c34e..121aa7bf9d92 100644
--- a/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx
+++ b/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx
@@ -115,7 +115,7 @@ com::sun::star::uno::Sequence< sal_Int8> FakedUpdateableResultSet::getImplementa
MutexGuard guard( osl::Mutex::getGlobalMutex() );
if( ! pId )
{
- static cppu::OImplementationId id(sal_False);
+ static cppu::OImplementationId id(false);
pId = &id;
}
}
diff --git a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
index 23ef836b16ac..af99b4b6f77c 100644
--- a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
@@ -291,7 +291,7 @@ Sequence< sal_Int8> PreparedStatement::getImplementationId() throw ( RuntimeExce
MutexGuard guard( osl::Mutex::getGlobalMutex() );
if( ! pId )
{
- static cppu::OImplementationId id(sal_False);
+ static cppu::OImplementationId id(false);
pId = &id;
}
}
diff --git a/connectivity/source/drivers/postgresql/pq_statement.cxx b/connectivity/source/drivers/postgresql/pq_statement.cxx
index 91272046b727..466fa61fe465 100644
--- a/connectivity/source/drivers/postgresql/pq_statement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_statement.cxx
@@ -236,7 +236,7 @@ Sequence< sal_Int8> Statement::getImplementationId() throw ( RuntimeException )
MutexGuard guard( osl::Mutex::getGlobalMutex() );
if( ! pId )
{
- static cppu::OImplementationId id(sal_False);
+ static cppu::OImplementationId id(false);
pId = &id;
}
}
diff --git a/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx b/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx
index f105d5c7d9bc..ef55d0f40b26 100644
--- a/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx
+++ b/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx
@@ -176,7 +176,7 @@ com::sun::star::uno::Sequence< sal_Int8> UpdateableResultSet::getImplementationI
MutexGuard guard( osl::Mutex::getGlobalMutex() );
if( ! pId )
{
- static cppu::OImplementationId id(sal_False);
+ static cppu::OImplementationId id(false);
pId = &id;
}
}
diff --git a/connectivity/source/drivers/postgresql/pq_xbase.cxx b/connectivity/source/drivers/postgresql/pq_xbase.cxx
index a0b67a1b0f7d..f4f8b987295b 100644
--- a/connectivity/source/drivers/postgresql/pq_xbase.cxx
+++ b/connectivity/source/drivers/postgresql/pq_xbase.cxx
@@ -202,7 +202,7 @@ Sequence< sal_Int8> ReflectionBase::getImplementationId() throw( RuntimeExceptio
MutexGuard guard( osl::Mutex::getGlobalMutex() );
if( ! pId )
{
- static cppu::OImplementationId id(sal_False);
+ static cppu::OImplementationId id(false);
pId = &id;
}
}
diff --git a/embeddedobj/source/commonembedding/miscobj.cxx b/embeddedobj/source/commonembedding/miscobj.cxx
index 70b86960a9ad..e21b38657731 100644
--- a/embeddedobj/source/commonembedding/miscobj.cxx
+++ b/embeddedobj/source/commonembedding/miscobj.cxx
@@ -453,7 +453,7 @@ uno::Sequence< sal_Int8 > SAL_CALL OCommonEmbeddedObject::getImplementationId()
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() ) ;
if ( !pID )
{
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
pID = &aID ;
}
}
diff --git a/embedserv/source/embed/servprov.cxx b/embedserv/source/embed/servprov.cxx
index 93995d402fdd..29d85d9e60e4 100644
--- a/embedserv/source/embed/servprov.cxx
+++ b/embedserv/source/embed/servprov.cxx
@@ -180,7 +180,7 @@ uno::Sequence< sal_Int8 > SAL_CALL EmbedServer_Impl::getImplementationId() throw
::osl::MutexGuard guard( ::osl::Mutex::getGlobalMutex() );
if( ! pId )
{
- static ::cppu::OImplementationId id( sal_False );
+ static ::cppu::OImplementationId id( false );
pId = &id;
}
}
diff --git a/extensions/source/ole/servprov.cxx b/extensions/source/ole/servprov.cxx
index cbf4645bd81c..6c9ba8cb8418 100644
--- a/extensions/source/ole/servprov.cxx
+++ b/extensions/source/ole/servprov.cxx
@@ -659,7 +659,7 @@ Sequence< sal_Int8 > SAL_CALL OleServer_Impl::getImplementationId() throw(Runtim
MutexGuard guard( Mutex::getGlobalMutex() );
if( ! pId )
{
- static OImplementationId id( sal_False );
+ static OImplementationId id( false );
pId = &id;
}
}
diff --git a/framework/inc/macros/xtypeprovider.hxx b/framework/inc/macros/xtypeprovider.hxx
index 30d30d32af7e..1880cc975879 100644
--- a/framework/inc/macros/xtypeprovider.hxx
+++ b/framework/inc/macros/xtypeprovider.hxx
@@ -70,7 +70,7 @@ ________________________________________________________________________________
if ( pID == NULL ) \
{ \
/* Create a new static ID ... */ \
- static ::cppu::OImplementationId aID( sal_False ); \
+ static ::cppu::OImplementationId aID( false ); \
/* ... and set his address to static pointer! */ \
pID = &aID ; \
} \
diff --git a/framework/source/fwe/classes/actiontriggercontainer.cxx b/framework/source/fwe/classes/actiontriggercontainer.cxx
index a4f58f7ba78c..1d4813597331 100644
--- a/framework/source/fwe/classes/actiontriggercontainer.cxx
+++ b/framework/source/fwe/classes/actiontriggercontainer.cxx
@@ -179,7 +179,7 @@ Sequence< sal_Int8 > SAL_CALL ActionTriggerContainer::getImplementationId() thro
if ( pID == NULL )
{
// Create a new static ID ...
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
// ... and set his address to static pointer!
pID = &aID ;
}
diff --git a/framework/source/fwe/classes/actiontriggerpropertyset.cxx b/framework/source/fwe/classes/actiontriggerpropertyset.cxx
index a10f90a584ae..8bbf7f3439ab 100644
--- a/framework/source/fwe/classes/actiontriggerpropertyset.cxx
+++ b/framework/source/fwe/classes/actiontriggerpropertyset.cxx
@@ -173,7 +173,7 @@ Sequence< sal_Int8 > SAL_CALL ActionTriggerPropertySet::getImplementationId() th
if ( pID == NULL )
{
// Create a new static ID ...
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
// ... and set his address to static pointer!
pID = &aID ;
}
diff --git a/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx b/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx
index 75afc5a8effb..9307dc641d91 100644
--- a/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx
+++ b/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx
@@ -165,7 +165,7 @@ Sequence< sal_Int8 > SAL_CALL ActionTriggerSeparatorPropertySet::getImplementati
if ( pID == NULL )
{
// Create a new static ID ...
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
// ... and set his address to static pointer!
pID = &aID ;
}
diff --git a/framework/source/fwe/classes/rootactiontriggercontainer.cxx b/framework/source/fwe/classes/rootactiontriggercontainer.cxx
index 96869c6fe39d..b64d2ea39be4 100644
--- a/framework/source/fwe/classes/rootactiontriggercontainer.cxx
+++ b/framework/source/fwe/classes/rootactiontriggercontainer.cxx
@@ -307,7 +307,7 @@ Sequence< sal_Int8 > SAL_CALL RootActionTriggerContainer::getImplementationId()
if ( pID == NULL )
{
// Create a new static ID ...
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
// ... and set his address to static pointer!
pID = &aID ;
}
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index 0d04ba6fff11..961776fc86f2 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -3113,7 +3113,7 @@ void Frame::implts_sendFrameActionEvent( const css::frame::FrameAction& aAction
// Get iterator for access to listener.
::cppu::OInterfaceIteratorHelper aIterator( *pContainer );
// Send message to all listener.
- while( aIterator.hasMoreElements() == sal_True )
+ while( aIterator.hasMoreElements() )
{
try
{
diff --git a/include/toolkit/helper/macros.hxx b/include/toolkit/helper/macros.hxx
index 984e080475fc..35ab2590aad0 100644
--- a/include/toolkit/helper/macros.hxx
+++ b/include/toolkit/helper/macros.hxx
@@ -84,7 +84,7 @@ ClassName* ClassName::GetImplementation( const ::com::sun::star::uno::Reference<
::osl::Guard< ::osl::Mutex > aGuard( ::osl::Mutex::getGlobalMutex() ); \
if( ! pId ) \
{ \
- static ::cppu::OImplementationId id( sal_False ); \
+ static ::cppu::OImplementationId id( false ); \
pId = &id; \
} \
} \
diff --git a/include/ucbhelper/macros.hxx b/include/ucbhelper/macros.hxx
index 846f31bd645a..760b0d845e95 100644
--- a/include/ucbhelper/macros.hxx
+++ b/include/ucbhelper/macros.hxx
@@ -329,7 +329,7 @@ Class::getImplementationId() \
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); \
if ( !pId ) \
{ \
- static cppu::OImplementationId id( sal_False ); \
+ static cppu::OImplementationId id( false ); \
pId = &id; \
} \
} \
diff --git a/pyuno/source/module/pyuno_adapter.cxx b/pyuno/source/module/pyuno_adapter.cxx
index 9b79492826d2..070a9ffe7122 100644
--- a/pyuno/source/module/pyuno_adapter.cxx
+++ b/pyuno/source/module/pyuno_adapter.cxx
@@ -63,7 +63,7 @@ Adapter::~Adapter()
mWrappedObject.scratch();
}
-static cppu::OImplementationId g_id( sal_False );
+static cppu::OImplementationId g_id( false );
Sequence<sal_Int8> Adapter::getUnoTunnelImplementationId()
{
diff --git a/sfx2/source/dialog/backingcomp.cxx b/sfx2/source/dialog/backingcomp.cxx
index 7d511517bd18..e79c35a17444 100644
--- a/sfx2/source/dialog/backingcomp.cxx
+++ b/sfx2/source/dialog/backingcomp.cxx
@@ -307,7 +307,7 @@ css::uno::Sequence< sal_Int8 > SAL_CALL BackingComp::getImplementationId()
// Control these pointer again ... it can be, that another instance will be faster then this one!
if (!pID)
{
- static ::cppu::OImplementationId aID(sal_False);
+ static ::cppu::OImplementationId aID(false);
pID = &aID;
}
/* } GLOBAL SAFE */
diff --git a/sfx2/source/doc/sfxbasemodel.cxx b/sfx2/source/doc/sfxbasemodel.cxx
index c65dfb3e988c..933fe5d70fc8 100644
--- a/sfx2/source/doc/sfxbasemodel.cxx
+++ b/sfx2/source/doc/sfxbasemodel.cxx
@@ -634,7 +634,7 @@ Sequence< sal_Int8 > SAL_CALL SfxBaseModel::getImplementationId() throw( Runtime
if ( pID == NULL )
{
// Create a new static ID ...
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
// ... and set his address to static pointer!
pID = &aID ;
}
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx
index 1d8df1ed0aba..98ef7233425c 100644
--- a/stoc/source/invocation/invocation.cxx
+++ b/stoc/source/invocation/invocation.cxx
@@ -1056,7 +1056,7 @@ Sequence< sal_Int8 > SAL_CALL Invocation_Impl::getImplementationId( ) throw( Ru
MutexGuard guard( Mutex::getGlobalMutex() );
if( ! pId )
{
- static OImplementationId id( sal_False );
+ static OImplementationId id( false );
pId = &id;
}
}
diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx
index 22e6d793cf55..6a43a0ca10d3 100644
--- a/svl/source/fsstor/fsstorage.cxx
+++ b/svl/source/fsstor/fsstorage.cxx
@@ -350,7 +350,7 @@ uno::Sequence< sal_Int8 > SAL_CALL FSStorage::getImplementationId()
if ( pID == NULL )
{
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
pID = &aID ;
}
}
diff --git a/svl/source/fsstor/ostreamcontainer.cxx b/svl/source/fsstor/ostreamcontainer.cxx
index ce02f524f6a2..e7892528d72c 100644
--- a/svl/source/fsstor/ostreamcontainer.cxx
+++ b/svl/source/fsstor/ostreamcontainer.cxx
@@ -193,7 +193,7 @@ uno::Sequence< sal_Int8 > SAL_CALL OFSStreamContainer::getImplementationId()
if ( pID == NULL )
{
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
pID = &aID ;
}
}
diff --git a/svtools/source/hatchwindow/hatchwindow.cxx b/svtools/source/hatchwindow/hatchwindow.cxx
index a2f6413d90d8..9efb09628226 100644
--- a/svtools/source/hatchwindow/hatchwindow.cxx
+++ b/svtools/source/hatchwindow/hatchwindow.cxx
@@ -169,7 +169,7 @@ uno::Sequence< sal_Int8 > SAL_CALL VCLXHatchWindow::getImplementationId()
if ( pID == NULL )
{
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
pID = &aID ;
}
}
diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx
index 526bfec7d86e..f31748b164fb 100644
--- a/svx/source/unodraw/unoshape.cxx
+++ b/svx/source/unodraw/unoshape.cxx
@@ -1040,7 +1040,7 @@ uno::Sequence< sal_Int8 > SAL_CALL SvxShape::getImplementationId()
if ( pID == NULL )
{
// Create a new static ID ...
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
// ... and set his address to static pointer!
pID = &aID ;
}
@@ -4102,7 +4102,7 @@ uno::Sequence< sal_Int8 > SAL_CALL SvxShapeText::getImplementationId()
if ( pID == NULL )
{
// Create a new static ID ...
- static ::cppu::OImplementationId aID( sal_False ) ;
+ static ::cppu::OImplementationId aID( false ) ;
// ... and set his address to static pointer!
pID = &aID ;
}
diff --git a/toolkit/source/awt/vclxmenu.cxx b/toolkit/source/awt/vclxmenu.cxx
index 400b10b98860..3858625a8def 100644
--- a/toolkit/source/awt/vclxmenu.cxx
+++ b/toolkit/source/awt/vclxmenu.cxx
@@ -302,7 +302,7 @@ throw(css::uno::RuntimeException)
::osl::Guard< ::osl::Mutex > aGlobalGuard( ::osl::Mutex::getGlobalMutex() );
if( !pIdPopupMenu )
{
- static ::cppu::OImplementationId idPopupMenu( sal_False );
+ static ::cppu::OImplementationId idPopupMenu( false );
pIdPopupMenu = &idPopupMenu;
}
}
@@ -316,7 +316,7 @@ throw(css::uno::RuntimeException)
::osl::Guard< ::osl::Mutex > aGlobalGuard( ::osl::Mutex::getGlobalMutex() );
if( !pIdMenuBar )
{
- static ::cppu::OImplementationId idMenuBar( sal_False );
+ static ::cppu::OImplementationId idMenuBar( false );
pIdMenuBar = &idMenuBar;
}
}
diff --git a/toolkit/source/awt/vclxtopwindow.cxx b/toolkit/source/awt/vclxtopwindow.cxx
index d382d3fef5e4..e2697aeed071 100644
--- a/toolkit/source/awt/vclxtopwindow.cxx
+++ b/toolkit/source/awt/vclxtopwindow.cxx
@@ -286,7 +286,7 @@ Window* VCLXTopWindow::GetWindowImpl()
::osl::Guard< ::osl::Mutex > aGuard( ::osl::Mutex::getGlobalMutex() );
if( !pIdWithHandle )
{
- static ::cppu::OImplementationId idWithHandle( sal_False );
+ static ::cppu::OImplementationId idWithHandle( false );
pIdWithHandle = &idWithHandle;
}
}
@@ -300,7 +300,7 @@ Window* VCLXTopWindow::GetWindowImpl()
::osl::Guard< ::osl::Mutex > aGuard( ::osl::Mutex::getGlobalMutex() );
if( !pId )
{
- static ::cppu::OImplementationId id( sal_False );
+ static ::cppu::OImplementationId id( false );
pId = &id;
}
}
diff --git a/ucb/source/ucp/file/filid.cxx b/ucb/source/ucp/file/filid.cxx
index 0fc415babb04..75c9f3c83826 100644
--- a/ucb/source/ucp/file/filid.cxx
+++ b/ucb/source/ucp/file/filid.cxx
@@ -90,7 +90,7 @@ FileContentIdentifier::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
diff --git a/ucb/source/ucp/ftp/ftpcontentidentifier.cxx b/ucb/source/ucp/ftp/ftpcontentidentifier.cxx
index 4da4819c3fdc..402372ca83dd 100644
--- a/ucb/source/ucp/ftp/ftpcontentidentifier.cxx
+++ b/ucb/source/ucp/ftp/ftpcontentidentifier.cxx
@@ -82,7 +82,7 @@ FTPContentIdentifier::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
diff --git a/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx b/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
index 6c7e4a64af83..62c68f0a9a85 100644
--- a/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
@@ -133,7 +133,7 @@ InteractionSupplyPassword::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
diff --git a/ucbhelper/source/provider/contentidentifier.cxx b/ucbhelper/source/provider/contentidentifier.cxx
index c700e741d3b7..ece3f0afaea7 100644
--- a/ucbhelper/source/provider/contentidentifier.cxx
+++ b/ucbhelper/source/provider/contentidentifier.cxx
@@ -142,7 +142,7 @@ ContentIdentifier::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
diff --git a/ucbhelper/source/provider/interactionrequest.cxx b/ucbhelper/source/provider/interactionrequest.cxx
index 96f85778b2aa..4e06dfea7448 100644
--- a/ucbhelper/source/provider/interactionrequest.cxx
+++ b/ucbhelper/source/provider/interactionrequest.cxx
@@ -153,7 +153,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionRequest::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
@@ -305,7 +305,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionAbort::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
@@ -407,7 +407,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionRetry::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
@@ -509,7 +509,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionApprove::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
@@ -611,7 +611,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionDisapprove::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
@@ -715,7 +715,7 @@ InteractionSupplyAuthentication::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
@@ -979,7 +979,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionSupplyName::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}
@@ -1096,7 +1096,7 @@ InteractionReplaceExistingData::getImplementationId()
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
if ( !pId )
{
- static cppu::OImplementationId id( sal_False );
+ static cppu::OImplementationId id( false );
pId = &id;
}
}