diff options
Diffstat (limited to 'store')
-rw-r--r-- | store/source/storbase.hxx | 6 | ||||
-rw-r--r-- | store/source/store.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx index f4745d7c6885..20f6f3245638 100644 --- a/store/source/storbase.hxx +++ b/store/source/storbase.hxx @@ -290,7 +290,7 @@ struct PageData { return new(page) T(nSize); } - return 0; + return nullptr; } bool allocate (void ** ppPage, sal_uInt16 * pnSize) @@ -406,13 +406,13 @@ class PageHolderObject template< class U > static U * dynamic_page_cast (PageData * p) { - return isA<U>(p) ? static_cast<U*>(p) : 0; + return isA<U>(p) ? static_cast<U*>(p) : nullptr; } template< class U > static U const * dynamic_page_cast (PageData const * p) { - return isA<U>(p) ? static_cast<U const *>(p) : 0; + return isA<U>(p) ? static_cast<U const *>(p) : nullptr; } public: diff --git a/store/source/store.cxx b/store/source/store.cxx index dfd41571e2dd..566efda73769 100644 --- a/store/source/store.cxx +++ b/store/source/store.cxx @@ -52,7 +52,7 @@ public: { return store::query ( static_cast<OStoreObject*>(pHandle), - static_cast<store_handle_type*>(0)); + static_cast<store_handle_type*>(nullptr)); } }; |