Update Project's displayName in GUI if it changes after initial load.

Change-Id: I94386102609772897c93a26ce97acb21d155bdf6
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
Konstantin Tokarev
2012-04-16 19:18:26 +04:00
committed by Daniel Teske
parent 60ecbc3443
commit 06010713e2
10 changed files with 87 additions and 2 deletions

View File

@@ -252,6 +252,9 @@ ProjectWindow::ProjectWindow(QWidget *parent)
connect(session, SIGNAL(startupProjectChanged(ProjectExplorer::Project*)),
this, SLOT(startupProjectChanged(ProjectExplorer::Project*)));
connect(session, SIGNAL(projectDisplayNameChanged(ProjectExplorer::Project*)),
this, SLOT(projectUpdated(ProjectExplorer::Project*)));
// Update properties to empty project for now:
showProperties(-1, -1);
}