forked from qt-creator/qt-creator
Utils: Rename FileName to FilePath
More in line with QFileInfo terminonlogy which appears to be best-of-breed within Qt. Change-Id: I1d051ff1c8363ebd4ee56376451df45216c4c9ab Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -106,10 +106,10 @@ private:
|
||||
friend void operator|=(DeployErrorCode &e1, const DeployErrorCode &e2) { e1 = static_cast<AndroidDeployQtStep::DeployErrorCode>((int)e1 | (int)e2); }
|
||||
friend DeployErrorCode operator|(const DeployErrorCode &e1, const DeployErrorCode &e2) { return static_cast<AndroidDeployQtStep::DeployErrorCode>((int)e1 | (int)e2); }
|
||||
|
||||
Utils::FileName m_manifestName;
|
||||
Utils::FilePath m_manifestName;
|
||||
QString m_serialNumber;
|
||||
QString m_avdName;
|
||||
Utils::FileName m_apkPath;
|
||||
Utils::FilePath m_apkPath;
|
||||
QMap<QString, QString> m_filesToPull;
|
||||
|
||||
QString m_targetArch;
|
||||
|
||||
Reference in New Issue
Block a user