Windeployqt: adjust bitset change for scaling (Take 2)

Important parts of 58861f78c0822f74744a3285abeb785219b8f96c were lost
during the cherry pick to 6.4.

Change-Id: I1a28aea60f4dc73a9eca0a3001aac0077a6bb759
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Oliver Wolff 2022-12-20 09:53:24 +01:00
parent 1620f6733b
commit 4ae6183f4a

View File

@ -1505,9 +1505,9 @@ static DeployResult deploy(const Options &options, const QMap<QString, QString>
}
if (optVerboseLevel >= 1) {
std::wcout << "Direct dependencies: " << formatQtModules(result.directlyUsedQtLibraries.to_ullong()).constData()
<< "\nAll dependencies : " << formatQtModules(result.usedQtLibraries.to_ullong()).constData()
<< "\nTo be deployed : " << formatQtModules(result.deployedQtLibraries.to_ullong()).constData() << '\n';
std::wcout << "Direct dependencies: " << formatQtModules(result.directlyUsedQtLibraries).constData()
<< "\nAll dependencies : " << formatQtModules(result.usedQtLibraries).constData()
<< "\nTo be deployed : " << formatQtModules(result.deployedQtLibraries).constData() << '\n';
}
if (optVerboseLevel > 1)