forked from qt-creator/qt-creator
Projectexplorer: Modernize codebase
Change-Id: I4793b58aa77bcd46af99f8b843c0f7439cdc9269 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com> Reviewed-by: Vikas Pachdha <vikas.pachdha@theqtcompany.com>
This commit is contained in:
@@ -42,7 +42,7 @@ public:
|
||||
TypeExecutable
|
||||
};
|
||||
|
||||
DeployableFile();
|
||||
DeployableFile() = default;
|
||||
DeployableFile(const QString &m_localFilePath, const QString &m_remoteDir,
|
||||
Type type = TypeNormal);
|
||||
DeployableFile(const Utils::FileName &localFilePath, const QString &remoteDir,
|
||||
@@ -59,7 +59,7 @@ public:
|
||||
private:
|
||||
Utils::FileName m_localFilePath;
|
||||
QString m_remoteDir;
|
||||
Type m_type;
|
||||
Type m_type = TypeNormal;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user