summaryrefslogtreecommitdiff
path: root/store/source/stordata.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/stordata.hxx')
-rw-r--r--store/source/stordata.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/source/stordata.hxx b/store/source/stordata.hxx
index 640c5847426a..c9946c22e8ca 100644
--- a/store/source/stordata.hxx
+++ b/store/source/stordata.hxx
@@ -766,13 +766,13 @@ private:
page & PAGE()
{
page * pImpl = static_cast<page*>(m_xPage.get());
- OSL_PRECOND(pImpl != 0, "OStoreDirectoryPageObject::PAGE(): Null pointer");
+ OSL_PRECOND(pImpl != nullptr, "OStoreDirectoryPageObject::PAGE(): Null pointer");
return (*pImpl);
}
page const & PAGE() const
{
page const * pImpl = static_cast<page const *>(m_xPage.get());
- OSL_PRECOND(pImpl != 0, "OStoreDirectoryPageObject::PAGE(): Null pointer");
+ OSL_PRECOND(pImpl != nullptr, "OStoreDirectoryPageObject::PAGE(): Null pointer");
return (*pImpl);
}