Skip to content
Snippets Groups Projects
Commit 6c75fcbd authored by Christian Kandeler's avatar Christian Kandeler
Browse files

RemoteLinux: Improve deploy step widget information.

The value of the active build configuration can influence whether
or not deployment is possible.

Change-Id: I20c2d8de9771eab2c113e57cd8fdae5a92a56a3d
Reviewed-on: http://codereview.qt.nokia.com/2337


Reviewed-by: default avatarQt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
parent e776c1f0
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,8 @@ ...@@ -35,6 +35,8 @@
#include "remotelinuxdeployconfiguration.h" #include "remotelinuxdeployconfiguration.h"
#include "remotelinuxutils.h" #include "remotelinuxutils.h"
#include <projectexplorer/target.h>
using namespace ProjectExplorer; using namespace ProjectExplorer;
namespace RemoteLinux { namespace RemoteLinux {
...@@ -51,6 +53,9 @@ RemoteLinuxDeployStepWidget::RemoteLinuxDeployStepWidget(AbstractRemoteLinuxDepl ...@@ -51,6 +53,9 @@ RemoteLinuxDeployStepWidget::RemoteLinuxDeployStepWidget(AbstractRemoteLinuxDepl
SLOT(handleStepToBeRemoved(int))); SLOT(handleStepToBeRemoved(int)));
// TODO: Move this knowledge into the deploy step itself. // TODO: Move this knowledge into the deploy step itself.
connect(m_step->target(),
SIGNAL(activeBuildConfigurationChanged(ProjectExplorer::BuildConfiguration*)),
SIGNAL(updateSummary()));
connect(m_step->deployConfiguration(), SIGNAL(currentDeviceConfigurationChanged()), connect(m_step->deployConfiguration(), SIGNAL(currentDeviceConfigurationChanged()),
SIGNAL(updateSummary())); SIGNAL(updateSummary()));
} }
......
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