From a48d3897eae7c6432d2e4b82fd9808ec3b3b5457 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@nokia.com> Date: Mon, 12 Apr 2010 13:18:29 +0200 Subject: [PATCH] QmlDesigner.propertyEditor: fixes expressions and undo Setting an expression is now one step in the Undo/Redo history See Bauhaus-527 --- .../qmldesigner/components/propertyeditor/propertyeditor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp index 01bc5b39705..e5601957b30 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp @@ -419,6 +419,8 @@ void PropertyEditor::changeExpression(const QString &name) if (m_locked) return; + RewriterTransaction transaction = beginRewriterTransaction(); + QString underscoreName(name); underscoreName.replace(QLatin1Char('.'), QLatin1Char('_')); -- GitLab