ref #46 Fixing: change of method implementation toJson in owner.

This commit is contained in:
IgorekLoschinin 2021-05-04 20:19:33 +03:00
parent 45d1bda4bc
commit 419873e4ff
2 changed files with 1 additions and 3 deletions

View File

@ -37,8 +37,6 @@ void Owner::toJson(QJsonObject &objJs) const {
objJs["name"] = _name;
objJs["timePoint"] = _timePoint;
return objJs;
}
bool Owner::isValid() const {

View File

@ -56,7 +56,7 @@ public:
* @param objJs It's object json - container.
* @return Returns a json object with owner a information.
*/
const QJsonObject &toJson(QJsonObject &objJs) const;
void toJson(QJsonObject &objJs) const;
/**
* @brief isValid Checks if an object is initialized.