Update src/CopyrighFixer/CopyrighFixer/owner.cpp

Co-authored-by: Andrei Yankovich <EndrIIMail@gmail.com>
This commit is contained in:
Igor loschinin 2021-05-03 20:46:50 +03:00 committed by GitHub
parent a12057916d
commit f71aaf07aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ void Owner::fromjson(const QJsonObject &objJs) {
_timePoint = objJs.value("timePoint").toInt(); _timePoint = objJs.value("timePoint").toInt();
} }
const QJsonObject &Owner::toJson(QJsonObject &objJs) const { void Owner::toJson(QJsonObject &objJs) const {
objJs["name"] = _name; objJs["name"] = _name;
objJs["timePoint"] = _timePoint; objJs["timePoint"] = _timePoint;