ParallelProgressDialog: Initialize all data members

Ensures we always have a deterministic state.
This commit is contained in:
Lioncash 2023-06-12 09:36:49 -04:00
parent 3ce06ae202
commit b70894b950
1 changed files with 1 additions and 1 deletions

View File

@ -126,6 +126,6 @@ private:
QProgressDialog m_dialog; QProgressDialog m_dialog;
Common::Flag m_was_cancelled; Common::Flag m_was_cancelled;
int m_last_received_progress; int m_last_received_progress = 0;
bool m_is_setting_value = false; bool m_is_setting_value = false;
}; };