forked from qt-creator/qt-creator
qmake: move over from QmakeProjectNodes to QmakeParserNodes
Change-Id: Iab87e0c248b0f651a1774336c3bddf83baa9d057 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
committed by
Tim Jenssen
parent
62726c3f77
commit
f9eab73dad
@@ -369,7 +369,10 @@ bool DocumentManager::setIsoIconsQmakeVariableValue(const QString &proPath, cons
|
||||
}
|
||||
|
||||
int flags = QmakeProjectManager::Internal::ProWriter::ReplaceValues | QmakeProjectManager::Internal::ProWriter::MultiLine;
|
||||
return proNode->setProVariable("ISO_ICONS", value, QString(), flags);
|
||||
QmakeProjectManager::QmakeProFile *pro = proNode->proFile();
|
||||
if (pro)
|
||||
return pro->setProVariable("ISO_ICONS", value, QString(), flags);
|
||||
return false;
|
||||
}
|
||||
|
||||
void DocumentManager::findPathToIsoProFile(bool *iconResourceFileAlreadyExists, QString *resourceFilePath,
|
||||
|
||||
Reference in New Issue
Block a user