forked from qt-creator/qt-creator
ProjectExplorer: Change ProjectConfiguration::toMap signature
To match better with the rest, especially the base AspectContainer. Change-Id: Ide0966cab3219800aa6b7b9e6012731a3fbe7a6f Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
@@ -90,11 +90,10 @@ bool AbstractRemoteLinuxDeployStep::fromMap(const QVariantMap &map)
|
||||
return true;
|
||||
}
|
||||
|
||||
QVariantMap AbstractRemoteLinuxDeployStep::toMap() const
|
||||
void AbstractRemoteLinuxDeployStep::toMap(QVariantMap &map) const
|
||||
{
|
||||
QVariantMap map = BuildStep::toMap();
|
||||
BuildStep::toMap(map);
|
||||
map.insert(d->deployTimes.exportDeployTimes());
|
||||
return map;
|
||||
}
|
||||
|
||||
bool AbstractRemoteLinuxDeployStep::init()
|
||||
|
||||
Reference in New Issue
Block a user