diff options
author | Jarek Kobus <jaroslaw.kobus@qt.io> | 2023-04-12 18:09:04 +0200 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@qt.io> | 2023-04-21 06:45:04 +0000 |
commit | 422d422debaa27b52a6108fd7b45a38c4c748bd3 (patch) | |
tree | ccc96ae52a155f9713cbfea0ddb5917b473cfdd2 /src/plugins/projectexplorer/jsonwizard | |
parent | 44aaad4c2f31e8bb6cf673f18facb59584d3fa5f (diff) | |
download | qt-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.cpp | 2 |
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(); |