mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
Replace NULL with nullptr
This commit is contained in:
parent
5f11e15571
commit
95a1400a2a
755 changed files with 5742 additions and 5742 deletions
|
|
@ -138,7 +138,7 @@ void ScriptEditorDebugger::update_tabs() {
|
|||
}
|
||||
|
||||
void ScriptEditorDebugger::clear_style() {
|
||||
tabs->add_theme_style_override("panel", NULL);
|
||||
tabs->add_theme_style_override("panel", nullptr);
|
||||
}
|
||||
|
||||
void ScriptEditorDebugger::save_node(ObjectID p_id, const String &p_file) {
|
||||
|
|
@ -923,7 +923,7 @@ void ScriptEditorDebugger::stop() {
|
|||
res_path_cache.clear();
|
||||
profiler_signature.clear();
|
||||
|
||||
inspector->edit(NULL);
|
||||
inspector->edit(nullptr);
|
||||
_update_buttons_state();
|
||||
}
|
||||
|
||||
|
|
@ -973,7 +973,7 @@ void ScriptEditorDebugger::_stack_dump_frame_selected() {
|
|||
msg.push_back(frame);
|
||||
_put_msg("get_stack_frame_vars", msg);
|
||||
} else {
|
||||
inspector->edit(NULL);
|
||||
inspector->edit(nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue