Skip to content

Commit a8bdfab

Browse files
kreuzbergerursfassler
authored andcommitted
clang-format changed QtTestDriver
1 parent c4143f9 commit a8bdfab

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/drivers/QtTestDriver.cpp

+7-9
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@ namespace internal {
1515
class TemporaryFileWrapper {
1616
public:
1717
static TemporaryFileWrapper create() {
18-
QTemporaryFile tempFile(
19-
QString("%1/%2_%3")
20-
.arg(
21-
QDir::tempPath(),
22-
qApp->applicationName().isEmpty() ? "qt_temp"
23-
: qApp->applicationName()
24-
)
25-
.arg(qApp->applicationPid())
26-
);
18+
QTemporaryFile tempFile(QString("%1/%2_%3")
19+
.arg(
20+
QDir::tempPath(),
21+
qApp->applicationName().isEmpty() ? "qt_temp"
22+
: qApp->applicationName()
23+
)
24+
.arg(qApp->applicationPid()));
2725

2826
if (!tempFile.open()) {
2927
return {};

0 commit comments

Comments
 (0)