Sun, 03 Nov 2019 13:07:04 +0200
fixed translations being updated twice at the same time, that's bad
#include "modeleditcontext.h" Model::EditContext::EditContext(Model& model) : model{model} { } void Model::EditContext::append(std::unique_ptr<modelobjects::BaseObject>&& object) { this->model.append(std::move(object)); } void Model::EditContext::setObjectProperty( modelobjects::BaseObject* object, modelobjects::Property property, const QVariant& value) { object->setProperty(property, value); }