mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
ParallelProgressDialog: Mark WasCanceled() as const
This doesn't alter any class state.
This commit is contained in:
parent
b70894b950
commit
9c0cd5c81a
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public:
|
||||||
void SetValue(int progress) { emit SetValueSignal(progress); }
|
void SetValue(int progress) { emit SetValueSignal(progress); }
|
||||||
|
|
||||||
// Can be called from any thread
|
// Can be called from any thread
|
||||||
bool WasCanceled() { return m_was_cancelled.IsSet(); }
|
bool WasCanceled() const { return m_was_cancelled.IsSet(); }
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void CancelSignal();
|
void CancelSignal();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue