RemoteLinux: Do not leak memory

Change-Id: Iea89c88e7c447288e7871e3c82db8295b3af2498
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tobias Hunger
2016-11-29 12:36:48 +01:00
committed by Tim Jenssen
parent c0fdb14a94
commit b293f81b41
2 changed files with 6 additions and 0 deletions

View File

@@ -81,6 +81,11 @@ DeploymentTimeInfo::DeploymentTimeInfo() : d(new DeploymentTimeInfoPrivate())
}
DeploymentTimeInfo::~DeploymentTimeInfo()
{
delete d;
}
void DeploymentTimeInfo::saveDeploymentTimeStamp(const DeployableFile &deployableFile,
const Kit *kit)
{

View File

@@ -41,6 +41,7 @@ class DeploymentTimeInfo
{
public:
DeploymentTimeInfo();
~DeploymentTimeInfo();
void importDeployTimes(const QVariantMap &map);
QVariantMap exportDeployTimes() const;