From cec468d78a57b2858d3b5c03ccb5c5c1928d628c Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 18 Sep 2020 12:11:40 +0200 Subject: Utils/ProjectExplorer: Move re-usabled bits of aspects to Utils Classes involved are BaseAspect and some derived classes, LayoutBuilder and VariableChooser. This is mostly mechanical, with various include/using changes to make it compile. Change-Id: I624a457f3555f102e541c4c71e33a9423af32250 Reviewed-by: Eike Ziller --- src/plugins/cppcheck/cppcheckoptions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/cppcheck/cppcheckoptions.cpp') diff --git a/src/plugins/cppcheck/cppcheckoptions.cpp b/src/plugins/cppcheck/cppcheckoptions.cpp index bb963c06e7..735557daf2 100644 --- a/src/plugins/cppcheck/cppcheckoptions.cpp +++ b/src/plugins/cppcheck/cppcheckoptions.cpp @@ -32,9 +32,9 @@ #include #include #include +#include #include -#include #include @@ -66,7 +66,7 @@ OptionsWidget::OptionsWidget(QWidget *parent) m_binary->setExpectedKind(Utils::PathChooser::ExistingCommand); m_binary->setCommandVersionArguments({"--version"}); - auto variableChooser = new Core::VariableChooser(this); + auto variableChooser = new Utils::VariableChooser(this); variableChooser->addSupportedWidget (m_customArguments); m_unusedFunction->setToolTip(tr("Disables multithreaded check.")); -- cgit v1.2.1