Replace NULL with nullptr
This commit is contained in:
@ -85,9 +85,9 @@ private:
|
||||
};
|
||||
|
||||
Ref<EditorDebuggerServer> server;
|
||||
TabContainer *tabs = NULL;
|
||||
Button *debugger_button = NULL;
|
||||
MenuButton *script_menu = NULL;
|
||||
TabContainer *tabs = nullptr;
|
||||
Button *debugger_button = nullptr;
|
||||
MenuButton *script_menu = nullptr;
|
||||
|
||||
Ref<Script> stack_script; // Why?!?
|
||||
|
||||
@ -95,7 +95,7 @@ private:
|
||||
int last_warning_count = 0;
|
||||
|
||||
float inspect_edited_object_timeout = 0;
|
||||
EditorDebuggerTree *remote_scene_tree = NULL;
|
||||
EditorDebuggerTree *remote_scene_tree = nullptr;
|
||||
float remote_scene_tree_timeout = 0.0;
|
||||
bool auto_switch_remote_scene_tree = false;
|
||||
bool debug_with_external_editor = false;
|
||||
|
||||
Reference in New Issue
Block a user