From e4797a659fa1ed2c125fad4d6506513938868ee1 Mon Sep 17 00:00:00 2001 From: Christian Rauch Date: Sun, 20 Oct 2024 15:10:05 +0200 Subject: [PATCH] 'CMakeParser' -> 'CMakeOutputParser' --- src/project_manager/ros_catkin_make_step.cpp | 4 ++-- src/project_manager/ros_catkin_tools_step.cpp | 4 ++-- src/project_manager/ros_colcon_step.cpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/project_manager/ros_catkin_make_step.cpp b/src/project_manager/ros_catkin_make_step.cpp index e29c7d39..8ebede9e 100644 --- a/src/project_manager/ros_catkin_make_step.cpp +++ b/src/project_manager/ros_catkin_make_step.cpp @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include @@ -128,7 +128,7 @@ bool ROSCatkinMakeStep::init() void ROSCatkinMakeStep::setupOutputFormatter(Utils::OutputFormatter *formatter) { formatter->addLineParser(new GnuMakeParser); - formatter->addLineParser(new CMakeProjectManager::CMakeParser); + formatter->addLineParser(new CMakeProjectManager::CMakeOutputParser); QList parsers = target()->kit()->createOutputParsers(); diff --git a/src/project_manager/ros_catkin_tools_step.cpp b/src/project_manager/ros_catkin_tools_step.cpp index d2b67a1f..ad3ea7cd 100644 --- a/src/project_manager/ros_catkin_tools_step.cpp +++ b/src/project_manager/ros_catkin_tools_step.cpp @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include @@ -140,7 +140,7 @@ bool ROSCatkinToolsStep::init() void ROSCatkinToolsStep::setupOutputFormatter(Utils::OutputFormatter *formatter) { formatter->addLineParser(new GnuMakeParser); - formatter->addLineParser(new CMakeProjectManager::CMakeParser); + formatter->addLineParser(new CMakeProjectManager::CMakeOutputParser); QList parsers = target()->kit()->createOutputParsers(); diff --git a/src/project_manager/ros_colcon_step.cpp b/src/project_manager/ros_colcon_step.cpp index e7d935d7..30342243 100644 --- a/src/project_manager/ros_colcon_step.cpp +++ b/src/project_manager/ros_colcon_step.cpp @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include @@ -127,7 +127,7 @@ bool ROSColconStep::init() void ROSColconStep::setupOutputFormatter(Utils::OutputFormatter *formatter) { formatter->addLineParser(new GnuMakeParser); - formatter->addLineParser(new CMakeProjectManager::CMakeParser); + formatter->addLineParser(new CMakeProjectManager::CMakeOutputParser); QList parsers = target()->kit()->createOutputParsers();