changeset 1758:83178b4bb698 by-id

Fix signal spec
author Chris Cannam
date Sun, 07 Jul 2019 16:42:47 +0100
parents 776389390473
children b679bae1627b
files data/model/Model.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/data/model/Model.cpp	Sat Jul 06 18:12:54 2019 +0100
+++ b/data/model/Model.cpp	Sun Jul 07 16:42:47 2019 +0100
@@ -59,8 +59,8 @@
 
     auto model = ModelById::get(m_alignmentModel);
     if (model) {
-        connect(model.get(), SIGNAL(completionChanged()),
-                this, SIGNAL(alignmentCompletionChanged()));
+        connect(model.get(), SIGNAL(completionChanged(ModelId)),
+                this, SIGNAL(alignmentCompletionChanged(ModelId)));
     }
 }