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:
@@ -33,20 +33,13 @@ using namespace Utils;
|
||||
|
||||
namespace ProjectExplorer {
|
||||
|
||||
DeployableFile::DeployableFile()
|
||||
: m_type(TypeNormal)
|
||||
{
|
||||
}
|
||||
|
||||
DeployableFile::DeployableFile(const QString &localFilePath, const QString &remoteDir, Type type)
|
||||
: m_localFilePath(FileName::fromUserInput(localFilePath)), m_remoteDir(remoteDir), m_type(type)
|
||||
{
|
||||
}
|
||||
{ }
|
||||
|
||||
DeployableFile::DeployableFile(const FileName &localFilePath, const QString &remoteDir, Type type)
|
||||
: m_localFilePath(localFilePath), m_remoteDir(remoteDir), m_type(type)
|
||||
{
|
||||
}
|
||||
{ }
|
||||
|
||||
QString DeployableFile::remoteFilePath() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user