mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Qt/QtUtils: Fix accidental recursion in ParallelProgressDialog
Seems to be a typo.
This commit is contained in:
parent
a209410e70
commit
0de6a32f4c
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ public:
|
|||
// All of the following can be called from any thread
|
||||
void Cancel() { emit CancelSignal(); }
|
||||
void Reset() { emit ResetSignal(); }
|
||||
void SetCancelButtonText(const QString& text) { emit SetCancelButtonText(text); }
|
||||
void SetCancelButtonText(const QString& text) { emit SetCancelButtonTextSignal(text); }
|
||||
void SetLabelText(const QString& text) { emit SetLabelTextSignal(text); }
|
||||
void SetMaximum(int maximum) { emit SetMaximumSignal(maximum); }
|
||||
void SetMinimum(int minimum) { emit SetMinimumSignal(minimum); }
|
||||
|
|
Loading…
Add table
Reference in a new issue