mirror of https://github.com/qt/qtbase.git
Fix abuse of assignment-in-conditional (and the resulting warning)
Change-Id: I2025e3360151c76982c45764cbee332855409dd0 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
This commit is contained in:
parent
181e861625
commit
2050e32b5f
|
@ -1318,8 +1318,8 @@ void VcprojGenerator::initDeploymentTool()
|
|||
+ "|0;";
|
||||
if (!qpaPluginDeployed) {
|
||||
QChar debugInfixChar;
|
||||
bool foundGuid = false;
|
||||
if (foundGuid = dllName.contains(QLatin1String("Guid")))
|
||||
bool foundGuid = dllName.contains(QLatin1String("Guid"));
|
||||
if (foundGuid)
|
||||
debugInfixChar = QLatin1Char('d');
|
||||
|
||||
if (foundGuid || dllName.contains(QLatin1String("Gui"))) {
|
||||
|
|
Loading…
Reference in New Issue