forked from qt-creator/qt-creator
CurveEditorView: Make lambda non-mutable
Change-Id: Ida58d407b3d234cd051fc21935457e7fc6bfa590 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -304,7 +304,7 @@ void CurveEditorView::commitKeyframes(TreeItem *item)
|
||||
ModelNode groupNode = group.modelNode();
|
||||
commitAuxiliaryData(groupNode, item);
|
||||
|
||||
auto replaceKeyframes = [&group, pitem, this]() mutable {
|
||||
auto replaceKeyframes = [&group, pitem, this] {
|
||||
m_block = true;
|
||||
|
||||
for (auto& frame : group.keyframes())
|
||||
|
Reference in New Issue
Block a user