diff options
Diffstat (limited to 'scene/main/node.h')
| -rw-r--r-- | scene/main/node.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/main/node.h b/scene/main/node.h index cf25a92be6..292ec0e291 100644 --- a/scene/main/node.h +++ b/scene/main/node.h @@ -180,7 +180,7 @@ private:  	void _duplicate_signals(const Node *p_original, Node *p_copy) const;  	void _duplicate_and_reown(Node *p_new_parent, const Map<Node *, Node *> &p_reown_map) const; -	Node *_duplicate(int p_flags, Map<const Node *, Node *> *r_duplimap = NULL) const; +	Node *_duplicate(int p_flags, Map<const Node *, Node *> *r_duplimap = nullptr) const;  	Array _get_children() const;  	Array _get_groups() const; @@ -286,7 +286,7 @@ public:  	Node *find_parent(const String &p_mask) const;  	_FORCE_INLINE_ SceneTree *get_tree() const { -		ERR_FAIL_COND_V(!data.tree, NULL); +		ERR_FAIL_COND_V(!data.tree, nullptr);  		return data.tree;  	}  |