Designer: Fix displaying of 'modified' state after saving.

Emit an IEditor::changed() after saving to force an update
of the OpenEditorsModel.
This commit is contained in:
Friedemann Kleint
2010-03-12 16:54:32 +01:00
parent 5567a01877
commit 50f0644c55
3 changed files with 12 additions and 8 deletions

View File

@@ -83,6 +83,7 @@ bool FormWindowFile::save(const QString &name /*= QString()*/)
emit setDisplayName(fi.fileName());
m_formWindow->setDirty(false);
emit changed();
emit saved();
return true;
}