summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilian Wolff <milian.wolff@kdab.com>2022-12-03 14:10:40 +0100
committerMilian Wolff <milian.wolff@kdab.com>2022-12-05 10:03:23 +0000
commitb663ce96db817cf04b47c579c94e5c697eb1d9ea (patch)
treecb42182243223f0d05dd8b844bb3a74974e7b313
parent0e972840f4b8142b327dc32770d5a34c594ed153 (diff)
Fix clazy-connect-3arg-lambda
Change-Id: If2520ec554fd194df9f92a59a98481efd4092193 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
-rw-r--r--app/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.cpp b/app/main.cpp
index df233e8..21f2d16 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -362,7 +362,7 @@ int main(int argc, char *argv[])
}
};
- QObject::connect(&header, &PerfHeader::finished, [&]() {
+ QObject::connect(&header, &PerfHeader::finished, &app, [&]() {
unwind.setByteOrder(static_cast<QSysInfo::Endian>(header.byteOrder()));
if (!header.isPipe()) {
if (infile->isSequential()) {