From 8e7caf4e25dc3f56877a504c45d157860215496b Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Fri, 10 Jul 2015 01:11:06 +0200 Subject: GH-1053 move launch related things and rename them --- logic/tools/JProfiler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'logic/tools/JProfiler.cpp') diff --git a/logic/tools/JProfiler.cpp b/logic/tools/JProfiler.cpp index 975345d5..45b33f79 100644 --- a/logic/tools/JProfiler.cpp +++ b/logic/tools/JProfiler.cpp @@ -4,7 +4,7 @@ #include #include "settings/SettingsObject.h" -#include "BaseLauncher.h" +#include "launch/LaunchTask.h" #include "BaseInstance.h" class JProfiler : public BaseProfiler @@ -18,7 +18,7 @@ private slots: void profilerFinished(int exit, QProcess::ExitStatus status); protected: - void beginProfilingImpl(std::shared_ptr process); + void beginProfilingImpl(std::shared_ptr process); private: int listeningPort = 0; @@ -48,7 +48,7 @@ void JProfiler::profilerFinished(int exit, QProcess::ExitStatus status) } } -void JProfiler::beginProfilingImpl(std::shared_ptr process) +void JProfiler::beginProfilingImpl(std::shared_ptr process) { listeningPort = globalSettings->get("JProfilerPort").toInt(); QProcess *profiler = new QProcess(this); -- cgit