diff --git a/Source/Core/DolphinQt/QtUtils/ParallelProgressDialog.h b/Source/Core/DolphinQt/QtUtils/ParallelProgressDialog.h index 3d8d92344c..573c2ed2d2 100644 --- a/Source/Core/DolphinQt/QtUtils/ParallelProgressDialog.h +++ b/Source/Core/DolphinQt/QtUtils/ParallelProgressDialog.h @@ -45,7 +45,7 @@ public: void SetValue(int progress) { emit SetValueSignal(progress); } // Can be called from any thread - bool WasCanceled() { return m_was_cancelled.IsSet(); } + bool WasCanceled() const { return m_was_cancelled.IsSet(); } signals: void CancelSignal();