You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
fixed uninitialized variables and false positives found by CppCheck
This commit is contained in:
@@ -39,7 +39,7 @@ void BackgroundProgress::_add_task(const String &p_task, const String &p_label,
|
||||
|
||||
_THREAD_SAFE_METHOD_
|
||||
ERR_FAIL_COND(tasks.has(p_task));
|
||||
Task t;
|
||||
BackgroundProgress::Task t;
|
||||
t.hb = memnew(HBoxContainer);
|
||||
Label *l = memnew(Label);
|
||||
l->set_text(p_label + " ");
|
||||
@@ -112,7 +112,7 @@ void BackgroundProgress::add_task(const String &p_task, const String &p_label, i
|
||||
void BackgroundProgress::task_step(const String &p_task, int p_step) {
|
||||
|
||||
//this code is weird, but it prevents deadlock.
|
||||
bool no_updates;
|
||||
bool no_updates = true;
|
||||
{
|
||||
_THREAD_SAFE_METHOD_
|
||||
no_updates = updates.empty();
|
||||
@@ -167,7 +167,7 @@ void ProgressDialog::_popup() {
|
||||
void ProgressDialog::add_task(const String &p_task, const String &p_label, int p_steps, bool p_can_cancel) {
|
||||
|
||||
ERR_FAIL_COND(tasks.has(p_task));
|
||||
Task t;
|
||||
ProgressDialog::Task t;
|
||||
t.vb = memnew(VBoxContainer);
|
||||
VBoxContainer *vb2 = memnew(VBoxContainer);
|
||||
t.vb->add_margin_child(p_label, vb2);
|
||||
|
||||
Reference in New Issue
Block a user