From d7ca7621230b56e3a4d02b8ee6d4074bcdca4da0 Mon Sep 17 00:00:00 2001 From: Christiaan Janssen <christiaan.janssen@nokia.com> Date: Wed, 31 Mar 2010 11:51:02 +0200 Subject: [PATCH] QmlDesigner.StatesEditor: fixing BAUHAUS-521 --- .../qmldesigner/components/stateseditor/stateseditorview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp index a3866b94397..eb98c1c129b 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp @@ -510,7 +510,7 @@ void StatesEditorView::clearModelStates() // Remove all states const int modelStateCount = m_modelStates.size(); - for (int i = 0; i < modelStateCount; ++i) { + for (int i=modelStateCount-1; i>=0; --i) { m_modelStates.removeAt(i); m_editorModel->removeState(i); } -- GitLab