diff options
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/backingcomp.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/sfxbasemodel.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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 ; } |