From 24d7a90e5f4499250f334e2f7adf07d9091619c4 Mon Sep 17 00:00:00 2001 From: AMZN-Phil Date: Thu, 21 Oct 2021 13:01:46 -0700 Subject: [PATCH] Fix a warning Signed-off-by: AMZN-Phil --- Code/Tools/ProjectManager/Source/DownloadController.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Code/Tools/ProjectManager/Source/DownloadController.h b/Code/Tools/ProjectManager/Source/DownloadController.h index 385ceb4772..608d9b1a2b 100644 --- a/Code/Tools/ProjectManager/Source/DownloadController.h +++ b/Code/Tools/ProjectManager/Source/DownloadController.h @@ -47,7 +47,8 @@ namespace O3DE::ProjectManager } else { - return QString(); + static const QString emptyString; + return emptyString; } } public slots: