diff options
Diffstat (limited to 'logic/tools/JVisualVM.cpp')
-rw-r--r-- | logic/tools/JVisualVM.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/tools/JVisualVM.cpp b/logic/tools/JVisualVM.cpp index fbfd858a..a749012b 100644 --- a/logic/tools/JVisualVM.cpp +++ b/logic/tools/JVisualVM.cpp @@ -18,7 +18,7 @@ private slots: void profilerFinished(int exit, QProcess::ExitStatus status); protected: - void beginProfilingImpl(BaseLauncher *process); + void beginProfilingImpl(std::shared_ptr<BaseLauncher> process); }; @@ -45,7 +45,7 @@ void JVisualVM::profilerFinished(int exit, QProcess::ExitStatus status) } } -void JVisualVM::beginProfilingImpl(BaseLauncher *process) +void JVisualVM::beginProfilingImpl(std::shared_ptr<BaseLauncher> process) { QProcess *profiler = new QProcess(this); QStringList profilerArgs = |