diff --git a/src/app/valentina/dialogs/dialoghistory.cpp b/src/app/valentina/dialogs/dialoghistory.cpp index c6e4fbfeb..bd431689e 100644 --- a/src/app/valentina/dialogs/dialoghistory.cpp +++ b/src/app/valentina/dialogs/dialoghistory.cpp @@ -335,7 +335,7 @@ QString DialogHistory::Record(const VToolRecord &tool) case Tool::CutSpline: { const quint32 splineId = AttrUInt(domElem, VToolCutSpline::AttrSpline); - const QSharedPointer spl = data->GeometricObject(splineId); + const QSharedPointer spl = data->GeometricObject(splineId); SCASSERT(spl != nullptr); return QString(tr("%1 - cut %2")) .arg(PointName(tool.getId())) @@ -344,7 +344,8 @@ QString DialogHistory::Record(const VToolRecord &tool) case Tool::CutSplinePath: { const quint32 splinePathId = AttrUInt(domElem, VToolCutSplinePath::AttrSplinePath); - const QSharedPointer splPath = data->GeometricObject(splinePathId); + const QSharedPointer splPath = + data->GeometricObject(splinePathId); SCASSERT(splPath != nullptr); return QString(tr("%1 - cut %2")) .arg(PointName(tool.getId()))