Mercurial > hg > svapp
diff align/Aligner.h @ 778:83a7b10b7415
Merge from branch pitch-align
author | Chris Cannam |
---|---|
date | Fri, 26 Jun 2020 13:48:52 +0100 |
parents | a316cb6fed81 |
children |
line wrap: on
line diff
--- a/align/Aligner.h Wed Jun 03 13:58:29 2020 +0100 +++ b/align/Aligner.h Fri Jun 26 13:48:52 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 };