refactor: clang format line length

This commit is contained in:
Lars Toenning
2024-11-16 19:27:30 +01:00
parent c7779e1461
commit 1a0b2a8c5f
1352 changed files with 25994 additions and 26603 deletions

View File

@@ -127,14 +127,13 @@ namespace MiscTest
//! ctor
Server()
{
QObject::connect(&m_process, qOverload<int, QProcess::ExitStatus>(&QProcess::finished), [](int code, QProcess::ExitStatus status) {
qDebug() << "Server process exited" << (status ? "abnormally" : "normally") << "with exit code" << code;
});
QObject::connect(&m_process, qOverload<int, QProcess::ExitStatus>(&QProcess::finished),
[](int code, QProcess::ExitStatus status) {
qDebug() << "Server process exited" << (status ? "abnormally" : "normally")
<< "with exit code" << code;
});
m_process.start(QCoreApplication::applicationDirPath() + "/tests_sharedstatetestserver", QStringList());
if (!m_process.waitForStarted())
{
qDebug() << "Server failed to start";
}
if (!m_process.waitForStarted()) { qDebug() << "Server failed to start"; }
}
//! dtor
~Server()