UI: Remove unnecessary Undo/Redo cleanup func

Since fixing the reference holding issue with scene/source deletion, the
undo/redo cleanup function (last param of add_action) is no longer
required.
This commit is contained in:
jp9000
2021-04-27 19:00:29 -07:00
parent 8946f02270
commit 78f1983f7d
12 changed files with 37 additions and 65 deletions

View File

@@ -292,8 +292,7 @@ void OBSBasicSourceSelect::on_buttonBox_accepted()
undo_s.add_action(QTStr("Undo.Add").arg(ui->sourceName->text()),
undo, redo,
std::string(obs_source_get_name(newSource)),
std::string(obs_data_get_json(wrapper)),
NULL);
std::string(obs_data_get_json(wrapper)));
obs_data_release(wrapper);
obs_sceneitem_release(item);
}