Fix bug in qa, drc_proto.h (link issue).

A virtual pure function was called inside drc_proto.h.
This commit is contained in:
jean-pierre charras 2021-10-16 10:55:19 +02:00
parent f2783a86e0
commit c4e775c694
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public:
virtual void SetCurrentProgress( double aProgress ) override
{
PROGRESS_REPORTER::SetCurrentProgress( aProgress );
PROGRESS_REPORTER_BASE::SetCurrentProgress( aProgress );
updateUI();
}