aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perfprofiler/perfdatareader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/perfprofiler/perfdatareader.cpp')
-rw-r--r--src/plugins/perfprofiler/perfdatareader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/perfprofiler/perfdatareader.cpp b/src/plugins/perfprofiler/perfdatareader.cpp
index 8f4adf6f26..4ea37251ac 100644
--- a/src/plugins/perfprofiler/perfdatareader.cpp
+++ b/src/plugins/perfprofiler/perfdatareader.cpp
@@ -64,7 +64,7 @@ PerfDataReader::PerfDataReader(QObject *parent) :
});
connect(&m_input, &QIODevice::bytesWritten, this, &PerfDataReader::writeChunk);
- connect(&m_input, &QProcess::started, this, [this]() {
+ connect(&m_input, &QProcess::started, this, [this] {
emit processStarted();
if (m_input.isWritable()) {
writeChunk();
@@ -109,7 +109,7 @@ PerfDataReader::PerfDataReader(QObject *parent) :
});
connect(&m_input, &QProcess::readyReadStandardOutput, this, &PerfDataReader::readFromDevice);
- connect(&m_input, &QProcess::readyReadStandardError, this, [this]() {
+ connect(&m_input, &QProcess::readyReadStandardError, this, [this] {
Core::MessageManager::writeSilently(QString::fromLocal8Bit(m_input.readAllStandardError()));
});