Skip to content
Snippets Groups Projects
Commit b7e72a5c authored by Daniel Teske's avatar Daniel Teske
Browse files

GenericProject: Fix update on editing project.files

The passed in filename is empty if the file is saved
with it current name. In that case pass the current
name to the GenericProjectManager, which then informs
the projects.

Change-Id: Id11c474930153e904702e7a0145e1f44331241fd
Reviewed-on: http://codereview.qt.nokia.com/1077


Reviewed-by: default avatarQt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: default avatarDaniel Teske <daniel.teske@nokia.com>
parent 7ffd2e8b
No related branches found
No related tags found
No related merge requests found
...@@ -179,6 +179,6 @@ bool ProjectFilesDocument::save(QString *errorString, const QString &name, bool ...@@ -179,6 +179,6 @@ bool ProjectFilesDocument::save(QString *errorString, const QString &name, bool
return false; return false;
if (!autoSave) if (!autoSave)
m_manager->notifyChanged(name); m_manager->notifyChanged(name.isEmpty() ? fileName() : name);
return true; return true;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment