1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

LibGUI: Remove GUI::AutocompleteProvider::Entry::kind

The only code using it was removed in the previous commit.
This commit is contained in:
thislooksfun 2021-10-26 21:53:49 -05:00 committed by Andreas Kling
parent f699dbdc3f
commit f7f9d09e72
4 changed files with 11 additions and 23 deletions

View file

@ -20,13 +20,6 @@ class AutocompleteProvider {
public:
virtual ~AutocompleteProvider() { }
enum class CompletionKind {
Identifier,
PreprocessorDefinition,
SystemInclude,
ProjectInclude,
};
enum class Language {
Unspecified,
Cpp,
@ -35,7 +28,6 @@ public:
struct Entry {
String completion;
size_t partial_input_length { 0 };
CompletionKind kind { CompletionKind::Identifier };
Language language { Language::Unspecified };
String display_text {};
};