diff data/model/Model.cpp @ 1752:6d09d68165a4 by-id

Further review of ById: make IDs only available when adding a model to the ById store, not by querying the item directly. This means any id encountered in the wild must have been added to the store at some point (even if later released), which simplifies reasoning about lifecycles
author Chris Cannam
date Fri, 05 Jul 2019 15:28:07 +0100
parents 565575463752
children 8529763e2258
line wrap: on
line diff
--- a/data/model/Model.cpp	Thu Jul 04 18:04:21 2019 +0100
+++ b/data/model/Model.cpp	Fri Jul 05 15:28:07 2019 +0100
@@ -56,8 +56,8 @@
 
     auto model = ModelById::get(m_sourceModel);
     if (model) {
-        connect(model.get(), SIGNAL(alignmentCompletionChanged()),
-                this, SIGNAL(alignmentCompletionChanged()));
+        connect(model.get(), SIGNAL(alignmentCompletionChanged(ModelId)),
+                this, SIGNAL(alignmentCompletionChanged(ModelId)));
     }