notify result widget about plural test changes
This commit is contained in:
parent
1f9a051382
commit
077efaac32
11 changed files with 107 additions and 5 deletions
|
@ -98,6 +98,11 @@ bool MetaDataModel::setData(
|
|||
break;
|
||||
}
|
||||
|
||||
if (valueChanged)
|
||||
{
|
||||
emit dataChanged(index, index);
|
||||
}
|
||||
|
||||
return valueChanged;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "../Age.h"
|
||||
|
||||
#include <QAbstractTableModel>
|
||||
#include <QString>
|
||||
#include <QDate>
|
||||
|
@ -28,4 +30,9 @@ public:
|
|||
|
||||
void write(QJsonObject &json) const;
|
||||
void read(const QJsonObject &json);
|
||||
|
||||
Age getAge() const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue