mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 13:43:15 +00:00
Fixed several memory leaks
This commit is contained in:
parent
3ea0943f64
commit
1577f41653
@ -294,7 +294,6 @@ EditorHelpSearch::EditorHelpSearch() {
|
||||
VBoxContainer *vbc = memnew(VBoxContainer);
|
||||
add_child(vbc);
|
||||
|
||||
HBoxContainer *sb_hb = memnew(HBoxContainer);
|
||||
search_box = memnew(LineEdit);
|
||||
vbc->add_child(search_box);
|
||||
search_box->connect("text_changed", this, "_text_changed");
|
||||
|
@ -5645,21 +5645,7 @@ EditorNode::EditorNode() {
|
||||
progress_hb = memnew(BackgroundProgress);
|
||||
//menu_hb->add_child(progress_hb);
|
||||
|
||||
{
|
||||
Control *sp = memnew(Control);
|
||||
sp->set_custom_minimum_size(Size2(30, 0) * EDSCALE);
|
||||
//menu_hb->add_child(sp);
|
||||
}
|
||||
|
||||
{
|
||||
Control *sp = memnew(Control);
|
||||
sp->set_custom_minimum_size(Size2(30, 0) * EDSCALE);
|
||||
//menu_hb->add_child(sp);
|
||||
}
|
||||
|
||||
top_region = memnew(PanelContainer);
|
||||
HBoxContainer *right_menu_hb = memnew(HBoxContainer);
|
||||
//top_region->add_child(right_menu_hb);
|
||||
menu_hb->add_child(right_menu_hb);
|
||||
|
||||
layout_dialog = memnew(EditorNameDialog);
|
||||
@ -6242,6 +6228,7 @@ EditorNode::~EditorNode() {
|
||||
memdelete(editor_plugins_over);
|
||||
memdelete(editor_plugins_force_input_forwarding);
|
||||
memdelete(file_server);
|
||||
memdelete(progress_hb);
|
||||
EditorSettings::destroy();
|
||||
}
|
||||
|
||||
|
@ -253,6 +253,7 @@ static void _create_script_templates(const String &p_path) {
|
||||
}
|
||||
}
|
||||
|
||||
memdelete(dir);
|
||||
memdelete(file);
|
||||
}
|
||||
|
||||
@ -280,6 +281,7 @@ void EditorSettings::create() {
|
||||
self_contained = true;
|
||||
extra_config->load(exe_path + "/_sc_");
|
||||
}
|
||||
memdelete(d);
|
||||
|
||||
if (self_contained) {
|
||||
// editor is self contained
|
||||
|
@ -4114,3 +4114,7 @@ CanvasItemEditorViewport::CanvasItemEditorViewport(EditorNode *p_node, CanvasIte
|
||||
label_desc->hide();
|
||||
editor->get_gui_base()->add_child(label_desc);
|
||||
}
|
||||
|
||||
CanvasItemEditorViewport::~CanvasItemEditorViewport() {
|
||||
memdelete(preview);
|
||||
}
|
||||
|
@ -512,6 +512,7 @@ public:
|
||||
virtual void drop_data(const Point2 &p_point, const Variant &p_data);
|
||||
|
||||
CanvasItemEditorViewport(EditorNode *p_node, CanvasItemEditor *p_canvas);
|
||||
~CanvasItemEditorViewport();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -591,6 +591,9 @@ ScriptCreateDialog::ScriptCreateDialog() {
|
||||
hb->add_child(vb);
|
||||
hb->add_child(empty_v->duplicate());
|
||||
|
||||
memdelete(empty_h);
|
||||
memdelete(empty_v);
|
||||
|
||||
add_child(hb);
|
||||
|
||||
/* Language */
|
||||
|
@ -538,6 +538,8 @@ void OS_X11::finalize() {
|
||||
physics_2d_server->finish();
|
||||
memdelete(physics_2d_server);
|
||||
|
||||
memdelete(power_manager);
|
||||
|
||||
if (xrandr_handle)
|
||||
dlclose(xrandr_handle);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user