Remove usage of SIGNAL/SLOT macro
Signed-off-by: Yihe Li <winmikedows@hotmail.com>
This commit is contained in:
parent
0136c2e82a
commit
4a9b3d2f5f
30 changed files with 75 additions and 87 deletions
|
@ -48,7 +48,7 @@ void JVisualVM::beginProfilingImpl(shared_qobject_ptr<LaunchTask> process)
|
|||
profiler->setProgram(programPath);
|
||||
|
||||
connect(profiler, &QProcess::started, this, &JVisualVM::profilerStarted);
|
||||
connect(profiler, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, &JVisualVM::profilerFinished);
|
||||
connect(profiler, &QProcess::finished, this, &JVisualVM::profilerFinished);
|
||||
|
||||
profiler->start();
|
||||
m_profilerProcess = profiler;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue