CppEditor filters: Reimplement matchers()

They are used only when ClangCodeModel plugin is disabled.
Activated with '.', ':', 'c' and 'm' shortcuts.

Change-Id: I131473c419e0cb302492cc6d4263bd8ad80769e4
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Jarek Kobus
2023-04-13 07:30:32 +02:00
parent c2ea7bc415
commit 08f3d57aa1
6 changed files with 37 additions and 2 deletions

View File

@@ -32,6 +32,7 @@ namespace Internal {
const int MaxResultCount = 10000;
// TODO: Remove this class, it's used only internally by ClangGlobalSymbolFilter
class CppLocatorFilter : public CppEditor::CppLocatorFilter
{
public:
@@ -65,7 +66,7 @@ public:
}
};
// TODO: Remove this class, it's used only internally by ClangClassesFilter
class CppClassesFilter : public CppEditor::CppClassesFilter
{
public:
@@ -98,6 +99,7 @@ public:
}
};
// TODO: Remove this class, it's used only internally by ClangFunctionsFilter
class CppFunctionsFilter : public CppEditor::CppFunctionsFilter
{
public: