diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-07-31 00:09:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 00:09:09 +0200 |
commit | a2c60fbc2b8cd31e014a2b79807941f80330a39f (patch) | |
tree | e8f2163d601dee97a56a891062e6338b4ea9a6e2 | |
parent | 6e8f8c04098fb955723c522466ce29de56551533 (diff) | |
parent | 026946502105c1563780129863d35070067584f0 (diff) |
Merge pull request #48948 from likeich/cleanup_binds
Remove unused bindings in ProjectManager
-rw-r--r-- | editor/project_manager.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index 7d35d5a3d5..8395fa996a 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -646,14 +646,6 @@ private: protected: static void _bind_methods() { - ClassDB::bind_method("_browse_path", &ProjectDialog::_browse_path); - ClassDB::bind_method("_create_folder", &ProjectDialog::_create_folder); - ClassDB::bind_method("_text_changed", &ProjectDialog::_text_changed); - ClassDB::bind_method("_path_text_changed", &ProjectDialog::_path_text_changed); - ClassDB::bind_method("_path_selected", &ProjectDialog::_path_selected); - ClassDB::bind_method("_file_selected", &ProjectDialog::_file_selected); - ClassDB::bind_method("_install_path_selected", &ProjectDialog::_install_path_selected); - ClassDB::bind_method("_browse_install_path", &ProjectDialog::_browse_install_path); ADD_SIGNAL(MethodInfo("project_created")); ADD_SIGNAL(MethodInfo("projects_updated")); } |