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

AK+Everywhere: Rename String to DeprecatedString

We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
This commit is contained in:
Linus Groh 2022-12-04 18:02:33 +00:00 committed by Andreas Kling
parent f74251606d
commit 6e19ab2bbc
2006 changed files with 11635 additions and 11636 deletions

View file

@ -6,8 +6,8 @@
#pragma once
#include <AK/DeprecatedString.h>
#include <AK/Forward.h>
#include <AK/String.h>
#include <AK/Utf32View.h>
#include <AK/Utf8View.h>
#include <LibLine/Style.h>
@ -26,12 +26,12 @@ public:
static constexpr ForSearchTag ForSearch {};
// Intentionally not explicit. (To allow suggesting bare strings)
CompletionSuggestion(String const& completion)
CompletionSuggestion(DeprecatedString const& completion)
: CompletionSuggestion(completion, ""sv, {})
{
}
CompletionSuggestion(String const& completion, ForSearchTag)
CompletionSuggestion(DeprecatedString const& completion, ForSearchTag)
: text_string(completion)
{
}
@ -61,8 +61,8 @@ public:
Utf32View text_view;
Utf32View trivia_view;
Utf32View display_trivia_view;
String text_string;
String display_trivia_string;
DeprecatedString text_string;
DeprecatedString display_trivia_string;
bool is_valid { false };
};
@ -120,7 +120,7 @@ public:
void reset()
{
m_last_shown_suggestion = String::empty();
m_last_shown_suggestion = DeprecatedString::empty();
m_last_shown_suggestion_display_length = 0;
m_suggestions.clear();
m_last_displayed_suggestion_index = 0;
@ -133,7 +133,7 @@ private:
}
Vector<CompletionSuggestion> m_suggestions;
CompletionSuggestion m_last_shown_suggestion { String::empty() };
CompletionSuggestion m_last_shown_suggestion { DeprecatedString::empty() };
size_t m_last_shown_suggestion_display_length { 0 };
bool m_last_shown_suggestion_was_complete { false };
mutable size_t m_next_suggestion_index { 0 };