forked from qt-creator/qt-creator
RemoteLinux: Move some stuff into the new target base class.
All these things were always conceptually per-target, but due to not having a common target class we had to awkwardly implement the concept using shared pointers. Change-Id: I1bb1992a230a485d519a892a6ca602a6846fc3cf Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
@@ -117,10 +117,9 @@ bool TarPackageCreationStep::init()
|
||||
if (!m_packagingNeeded)
|
||||
return true;
|
||||
|
||||
const QSharedPointer<DeploymentInfo> deploymentInfo = deployConfiguration()->deploymentInfo();
|
||||
for (int i = 0; i < deploymentInfo->deployableCount(); ++i) {
|
||||
const DeploymentInfo * const deploymentInfo = deployConfiguration()->deploymentInfo();
|
||||
for (int i = 0; i < deploymentInfo->deployableCount(); ++i)
|
||||
m_files.append(deploymentInfo->deployableAt(i));
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user