Mercurial > hg > svapp
diff align/Aligner.h @ 769:a316cb6fed81 pitch-align
Fixes to notification and completion in aligners
author | Chris Cannam |
---|---|
date | Thu, 28 May 2020 17:04:36 +0100 |
parents | 6429a164b7e1 |
children |
line wrap: on
line diff
--- a/align/Aligner.h Fri May 22 17:17:44 2020 +0100 +++ b/align/Aligner.h Thu May 28 17:04:36 2020 +0100 @@ -32,12 +32,16 @@ signals: /** * Emitted when alignment is successfully completed. The reference - * and toAlign models can be queried from the alignment model. + * and toAlign models can be queried from the alignment + * model. This should be emitted as the last thing the aligner + * does, as the recipient may delete the aligner during the call. */ void complete(ModelId alignmentModel); // an AlignmentModel /** - * Emitted when alignment fails. + * Emitted when alignment fails. This should be emitted as the + * last thing the aligner does, as the recipient may delete the + * aligner during the call. */ void failed(ModelId toAlign, QString errorText); // the toAlign model };