Skip to content

Commit

Permalink
'CMakeParser' -> 'CMakeOutputParser'
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Oct 20, 2024
1 parent 02c95b1 commit e4797a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/project_manager/ros_catkin_make_step.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <qtsupport/qtparser.h>
#include <utils/stringutils.h>
#include <utils/qtcassert.h>
#include <cmakeprojectmanager/cmakeparser.h>
#include <cmakeprojectmanager/cmakeoutputparser.h>

#include <QDir>
#include <QComboBox>
Expand Down Expand Up @@ -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<Utils::OutputLineParser *> parsers = target()->kit()->createOutputParsers();

Expand Down
4 changes: 2 additions & 2 deletions src/project_manager/ros_catkin_tools_step.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include <qtsupport/qtparser.h>
#include <utils/stringutils.h>
#include <utils/qtcassert.h>
#include <cmakeprojectmanager/cmakeparser.h>
#include <cmakeprojectmanager/cmakeoutputparser.h>
#include <utils/variablechooser.h>
#include <coreplugin/messagemanager.h>

Expand Down Expand Up @@ -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<Utils::OutputLineParser *> parsers = target()->kit()->createOutputParsers();

Expand Down
4 changes: 2 additions & 2 deletions src/project_manager/ros_colcon_step.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <qtsupport/qtparser.h>
#include <utils/stringutils.h>
#include <utils/qtcassert.h>
#include <cmakeprojectmanager/cmakeparser.h>
#include <cmakeprojectmanager/cmakeoutputparser.h>

#include <QDir>
#include <QComboBox>
Expand Down Expand Up @@ -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<Utils::OutputLineParser *> parsers = target()->kit()->createOutputParsers();

Expand Down

0 comments on commit e4797a6

Please sign in to comment.