summaryrefslogtreecommitdiffstats
path: root/sigmodr/tree/BaseModel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigmodr/tree/BaseModel.cpp')
-rw-r--r--sigmodr/tree/BaseModel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigmodr/tree/BaseModel.cpp b/sigmodr/tree/BaseModel.cpp
index 3981e923..0dceeaa4 100644
--- a/sigmodr/tree/BaseModel.cpp
+++ b/sigmodr/tree/BaseModel.cpp
@@ -128,16 +128,16 @@ bool BaseModel::loadFromData(const QString& data, QDomDocument* xml) const
return loaded;
}
-void BaseModel::childRowChanged(const int row)
+void BaseModel::childRowChanged(const int row, const Change change)
{
QList<int> indexes;
indexes << indexNumber() << row;
- emit(rowsChanged(indexes));
+ emit(rowsChanged(indexes, change));
}
-void BaseModel::childRowsChanged(const QList<int>& rows)
+void BaseModel::childRowsChanged(const QList<int>& rows, const Change change)
{
QList<int> indexes;
indexes << indexNumber() << rows;
- emit(rowsChanged(indexes));
+ emit(rowsChanged(indexes, change));
}