Replace uses of endl on Qt classes with Qt::endl

This fixes a whole bunch of warnings
This commit is contained in:
Dale Glass 2021-07-03 19:08:03 +02:00
parent 88cd4a72d4
commit be6a67b5eb
8 changed files with 34 additions and 34 deletions

View file

@ -142,7 +142,7 @@ void unpackAndroidAssets() {
if (!file.open(QIODevice::ReadWrite | QIODevice::Truncate)) {
throw std::runtime_error("Can't write date stamp");
}
QTextStream(&file) << "touch" << endl;
QTextStream(&file) << "touch" << Qt::endl;
file.close();
}
}

View file

@ -738,7 +738,7 @@ Mapping::Pointer UserInputMapper::newMapping(const QString& mappingName) {
// if (request->getResult() == ResourceRequest::Success) {
// result = parseMapping(QString(request->getData()));
// } else {
// qCWarning(controllers) << "Failed to load mapping url <" << jsonUrl << ">" << endl;
// qCWarning(controllers) << "Failed to load mapping url <" << jsonUrl << ">" << Qt::endl;
// }
// request->deleteLater();
// }
@ -1177,13 +1177,13 @@ Mapping::Pointer UserInputMapper::parseMapping(const QString& json) {
if (doc.isNull()) {
qCDebug(controllers) << "Invalid JSON...\n";
qCDebug(controllers) << error.errorString();
qCDebug(controllers) << "JSON was:\n" << json << endl;
qCDebug(controllers) << "JSON was:\n" << json << Qt::endl;
return Mapping::Pointer();
}
if (!doc.isObject()) {
qWarning() << "Mapping json Document is not an object" << endl;
qCDebug(controllers) << "JSON was:\n" << json << endl;
qWarning() << "Mapping json Document is not an object" << Qt::endl;
qCDebug(controllers) << "JSON was:\n" << json << Qt::endl;
return Mapping::Pointer();
}
return parseMapping(doc.object());

View file

@ -49,7 +49,7 @@ ACClientApp::ACClientApp(int argc, char* argv[]) :
parser.addOption(listenPortOption);
if (!parser.parse(QCoreApplication::arguments())) {
qCritical() << parser.errorText() << endl;
qCritical() << parser.errorText() << Qt::endl;
parser.showHelp();
Q_UNREACHABLE();
}

View file

@ -59,7 +59,7 @@ ATPClientApp::ATPClientApp(int argc, char* argv[]) :
parser.addOption(listenPortOption);
if (!parser.parse(QCoreApplication::arguments())) {
qCritical() << parser.errorText() << endl;
qCritical() << parser.errorText() << Qt::endl;
parser.showHelp();
Q_UNREACHABLE();
}

View file

@ -45,7 +45,7 @@ ICEClientApp::ICEClientApp(int argc, char* argv[]) :
parser.addOption(cacheSTUNOption);
if (!parser.parse(QCoreApplication::arguments())) {
qCritical() << parser.errorText() << endl;
qCritical() << parser.errorText() << Qt::endl;
parser.showHelp();
Q_UNREACHABLE();
}

View file

@ -207,11 +207,11 @@ void TestCreator::appendTestResultsToFile(const TestResult& testResult, const QP
// Create text file describing the failure
QTextStream stream(&descriptionFile);
stream << "TestCreator in folder " << testResult._pathname.left(testResult._pathname.length() - 1) << endl; // remove trailing '/'
stream << "Expected image was " << testResult._expectedImageFilename << endl;
stream << "Actual image was " << testResult._actualImageFilename << endl;
stream << "Similarity index was " << testResult._errorGlobal << endl;
stream << "Worst tile was " << testResult._errorLocal << endl;
stream << "TestCreator in folder " << testResult._pathname.left(testResult._pathname.length() - 1) << Qt::endl; // remove trailing '/'
stream << "Expected image was " << testResult._expectedImageFilename << Qt::endl;
stream << "Actual image was " << testResult._actualImageFilename << Qt::endl;
stream << "Similarity index was " << testResult._errorGlobal << Qt::endl;
stream << "Worst tile was " << testResult._errorLocal << Qt::endl;
descriptionFile.close();
@ -415,7 +415,7 @@ void TestCreator::includeTest(QTextStream& textStream, const QString& testPathna
QString partialPath = extractPathFromTestsDown(testPathname);
QString partialPathWithoutTests = partialPath.right(partialPath.length() - 7);
textStream << "Script.include(testsRootPath + \"" << partialPathWithoutTests + "\");" << endl;
textStream << "Script.include(testsRootPath + \"" << partialPathWithoutTests + "\");" << Qt::endl;
}
void TestCreator::createTests(const QString& clientProfile) {
@ -994,7 +994,7 @@ void TestCreator::createRecursiveScript(const QString& directory, bool interacti
QTextStream textStream(&recursiveTestsFile);
textStream << "// This is an automatically generated file, created by nitpick" << endl;
textStream << "// This is an automatically generated file, created by nitpick" << Qt::endl;
// Include 'nitpick.js'
QString branch = nitpick->getSelectedBranch();
@ -1002,31 +1002,31 @@ void TestCreator::createRecursiveScript(const QString& directory, bool interacti
textStream << "PATH_TO_THE_REPO_PATH_UTILS_FILE = \"https://raw.githubusercontent.com/" + user + "/hifi_tests/" + branch +
"/tests/utils/branchUtils.js\";"
<< endl;
textStream << "Script.include(PATH_TO_THE_REPO_PATH_UTILS_FILE);" << endl << endl;
<< Qt::endl;
textStream << "Script.include(PATH_TO_THE_REPO_PATH_UTILS_FILE);" << Qt::endl << Qt::endl;
// The 'depth' variable is used to signal when to start running the recursive scripts
textStream << "if (typeof depth === 'undefined') {" << endl;
textStream << " depth = 0;" << endl;
textStream << " nitpick = createNitpick(Script.resolvePath(\".\"));" << endl;
textStream << " testsRootPath = nitpick.getTestsRootPath();" << endl << endl;
textStream << " nitpick.enableRecursive();" << endl;
textStream << " nitpick.enableAuto();" << endl;
textStream << "} else {" << endl;
textStream << " depth++" << endl;
textStream << "}" << endl << endl;
textStream << "if (typeof depth === 'undefined') {" << Qt::endl;
textStream << " depth = 0;" << Qt::endl;
textStream << " nitpick = createNitpick(Script.resolvePath(\".\"));" << Qt::endl;
textStream << " testsRootPath = nitpick.getTestsRootPath();" << Qt::endl << Qt::endl;
textStream << " nitpick.enableRecursive();" << Qt::endl;
textStream << " nitpick.enableAuto();" << Qt::endl;
textStream << "} else {" << Qt::endl;
textStream << " depth++" << Qt::endl;
textStream << "}" << Qt::endl << Qt::endl;
// Now include the test scripts
for (int i = 0; i < directories.length(); ++i) {
includeTest(textStream, directories.at(i));
}
textStream << endl;
textStream << "if (depth > 0) {" << endl;
textStream << " depth--;" << endl;
textStream << "} else {" << endl;
textStream << " nitpick.runRecursive();" << endl;
textStream << "}" << endl << endl;
textStream << Qt::endl;
textStream << "if (depth > 0) {" << Qt::endl;
textStream << " depth--;" << Qt::endl;
textStream << "} else {" << Qt::endl;
textStream << " nitpick.runRecursive();" << Qt::endl;
textStream << "}" << Qt::endl << Qt::endl;
recursiveTestsFile.close();
}

View file

@ -29,7 +29,7 @@ SkeletonDumpApp::SkeletonDumpApp(int argc, char* argv[]) : QCoreApplication(argc
parser.addOption(inputFilenameOption);
if (!parser.parse(QCoreApplication::arguments())) {
qCritical() << parser.errorText() << endl;
qCritical() << parser.errorText() << Qt::endl;
parser.showHelp();
_returnCode = 1;
return;

View file

@ -188,7 +188,7 @@ VHACDUtilApp::VHACDUtilApp(int argc, char* argv[]) :
if (!parser.parse(QCoreApplication::arguments())) {
qCritical() << parser.errorText() << endl;
qCritical() << parser.errorText() << Qt::endl;
parser.showHelp();
Q_UNREACHABLE();
}