diff options
| author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-09-12 18:25:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-12 18:25:28 +0200 |
| commit | cdc5264a3ef08c0e6805eb38d3f632ca21a5171e (patch) | |
| tree | 12acf768a03838ee4721c1ededd2abd2f2793fca /editor/script_editor_debugger.cpp | |
| parent | 06667b2fcfcf130a9b9e8974c1c7ac0c9ae1de0a (diff) | |
| parent | 30327872e0d7989220a28a91a39d847dacca406d (diff) | |
| download | redot-engine-cdc5264a3ef08c0e6805eb38d3f632ca21a5171e.tar.gz | |
Merge pull request #21692 from Faless/sockets_rebase
New NetSocket interface with common BSD/Win implementation
Diffstat (limited to 'editor/script_editor_debugger.cpp')
| -rw-r--r-- | editor/script_editor_debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/script_editor_debugger.cpp b/editor/script_editor_debugger.cpp index 7a97531932..c07220d42c 100644 --- a/editor/script_editor_debugger.cpp +++ b/editor/script_editor_debugger.cpp @@ -1987,7 +1987,7 @@ ScriptEditorDebugger::ScriptEditorDebugger(EditorNode *p_editor) { inspector->connect("object_id_selected", this, "_scene_tree_property_select_object"); sc->add_child(inspector); - server = TCP_Server::create_ref(); + server.instance(); pending_in_queue = 0; |
