Removing unused variables and defines and some renaming

Signed-off-by: AMZN-Phil <pconroy@amazon.com>
This commit is contained in:
AMZN-Phil
2021-10-21 09:35:03 -07:00
parent 9aa9ed8c8e
commit 2809c3b7ed
5 changed files with 12 additions and 17 deletions
@@ -17,8 +17,6 @@ namespace O3DE::ProjectManager
{
class DownloadWorker : public QObject
{
// QProcess::waitForFinished uses -1 to indicate that the process should not timeout
static constexpr int MaxBuildTimeMSecs = -1;
// Download was cancelled
inline static const QString DownloadCancelled = QObject::tr("Download Cancelled.");
@@ -38,9 +36,6 @@ namespace O3DE::ProjectManager
private:
QProcess* m_configProjectProcess = nullptr;
QProcess* m_buildProjectProcess = nullptr;
QString m_gemName;
int m_downloadProgress;
};