summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/jsonwizard
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2023-04-12 18:09:04 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2023-04-21 06:45:04 +0000
commit422d422debaa27b52a6108fd7b45a38c4c748bd3 (patch)
treeccc96ae52a155f9713cbfea0ddb5917b473cfdd2 /src/plugins/projectexplorer/jsonwizard
parent44aaad4c2f31e8bb6cf673f18facb59584d3fa5f (diff)
downloadqt-creator-422d422debaa27b52a6108fd7b45a38c4c748bd3.tar.gz
LocatorMatcherTask: Get rid of Input/OutputData typedefs
Introduce LocatorFilterEntries instead. Change-Id: I082e0405441aa4b70a5e8fb796aa5c4fa3879265 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/plugins/projectexplorer/jsonwizard')
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp
index d57c0bacc5..2837fe844c 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp
+++ b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp
@@ -599,7 +599,7 @@ void LineEditField::setupCompletion(FancyLineEdit *lineEdit)
using namespace Utils;
if (m_completion == Completion::None)
return;
- const auto handleResults = [this, lineEdit](const QList<LocatorFilterEntry> &entries) {
+ const auto handleResults = [this, lineEdit](const LocatorFilterEntries &entries) {
QSet<QString> namespaces;
QStringList classes;
Project * const project = ProjectTree::currentProject();