diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-22 13:35:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-22 13:35:05 +0200 |
| commit | c4918ca76b340d737452f08da1e36dee9a8bf1c2 (patch) | |
| tree | 6ead5a44bdd57f509d4e12ce5b74225847e29c11 /editor/plugins/script_editor_plugin.h | |
| parent | 0ed59fdf12a8c8b385163c70ace0cd659867c9b1 (diff) | |
| parent | 218b1c223d0183c930df8d8a1e352ffa9f113962 (diff) | |
Merge pull request #9717 from kubecz3k/plugin-methods-rename
Rename of two EditorPlugin methods
Diffstat (limited to 'editor/plugins/script_editor_plugin.h')
| -rw-r--r-- | editor/plugins/script_editor_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h index 3d03eb0f49..d8a9415df1 100644 --- a/editor/plugins/script_editor_plugin.h +++ b/editor/plugins/script_editor_plugin.h @@ -322,7 +322,7 @@ class ScriptEditor : public PanelContainer { void _file_dialog_action(String p_file); Ref<Script> _get_current_script(); - Array _get_opened_script_list() const; + Array _get_open_scripts() const; static void _open_script_request(const String &p_path); @@ -357,7 +357,7 @@ public: void get_window_layout(Ref<ConfigFile> p_layout); void set_scene_root_script(Ref<Script> p_script); - Vector<Ref<Script> > get_opened_scripts() const; + Vector<Ref<Script> > get_open_scripts() const; bool script_goto_method(Ref<Script> p_script, const String &p_method); |