Fix removing items in an EditableModelView

Fix #489
Fix #456

If @fourtf could take a look at this fix it would be nice KKaper
This commit is contained in:
Rasmus Karlsson
2018-06-23 14:46:21 +00:00
parent ee1fd9274d
commit 942217fd6a
+1 -1
View File
@@ -189,7 +189,7 @@ public:
assert(row >= 0 && row < this->rows.size());
int signalVectorRow = this->getVectorIndexFromModelIndex(row);
this->vector->removeItem(signalVectorRow, this);
this->vector->removeItem(signalVectorRow);
return true;
}