summaryrefslogtreecommitdiff
path: root/sd/source/filter/ppt/pptatom.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/filter/ppt/pptatom.hxx')
-rw-r--r--sd/source/filter/ppt/pptatom.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/ppt/pptatom.hxx b/sd/source/filter/ppt/pptatom.hxx
index efbd72092604..c23e662442b1 100644
--- a/sd/source/filter/ppt/pptatom.hxx
+++ b/sd/source/filter/ppt/pptatom.hxx
@@ -77,12 +77,12 @@ private:
inline bool Atom::hasChildAtom( sal_uInt16 nRecType ) const
{
- return findFirstChildAtom( nRecType ) != NULL;
+ return findFirstChildAtom( nRecType ) != nullptr;
}
inline const Atom* Atom::findFirstChildAtom( sal_uInt16 nRecType ) const
{
- return findNextChildAtom( nRecType, NULL );
+ return findNextChildAtom( nRecType, nullptr );
}
inline const Atom* Atom::findFirstChildAtom() const