diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-29 11:04:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-29 11:08:32 +0100 |
commit | 612dac063a144506b44f4ab2afa2c5cdf9d882b4 (patch) | |
tree | 856ab6ea17ca4760995b8ca41766c5c0c2115de7 /svl | |
parent | 8a8ea11e5ea386af8b91b2ff36e5906afc571c2b (diff) |
bool improvements
Change-Id: I0dc09b7a6ee2849bd0c2ffc31be45f81cd2c15ee
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/fsstor/fsstorage.cxx | 2 | ||||
-rw-r--r-- | svl/source/fsstor/ostreamcontainer.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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 ; } } |