diff options
Diffstat (limited to 'src/plugins/cppcheck/cppcheckoptions.cpp')
-rw-r--r-- | src/plugins/cppcheck/cppcheckoptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 <utils/hostosinfo.h> #include <utils/pathchooser.h> #include <utils/qtcassert.h> +#include <utils/variablechooser.h> #include <coreplugin/icore.h> -#include <coreplugin/variablechooser.h> #include <debugger/analyzer/analyzericons.h> @@ -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.")); |