diff options
Diffstat (limited to 'editor/dependency_editor.cpp')
| -rw-r--r-- | editor/dependency_editor.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/dependency_editor.cpp b/editor/dependency_editor.cpp index 1802bdec93..95b3a02631 100644 --- a/editor/dependency_editor.cpp +++ b/editor/dependency_editor.cpp @@ -749,12 +749,11 @@ void OrphanResourcesDialog::_find_to_delete(TreeItem *p_item, List<String> &path  }  void OrphanResourcesDialog::_delete_confirm() { -	DirAccess *da = DirAccess::create(DirAccess::ACCESS_RESOURCES); +	DirAccessRef da = DirAccess::create(DirAccess::ACCESS_RESOURCES);  	for (const String &E : paths) {  		da->remove(E);  		EditorFileSystem::get_singleton()->update_file(E);  	} -	memdelete(da);  	refresh();  }  |