mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:37:44 +00:00
Everywhere: Rename {Deprecated => Byte}String
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
This commit is contained in:
parent
38d62563b3
commit
5e1499d104
1615 changed files with 10257 additions and 10257 deletions
|
@ -19,13 +19,13 @@ public:
|
|||
virtual ~Breadcrumbbar() override = default;
|
||||
|
||||
void clear_segments();
|
||||
void append_segment(DeprecatedString text, Gfx::Bitmap const* icon = nullptr, DeprecatedString data = {}, String tooltip = {});
|
||||
void append_segment(ByteString text, Gfx::Bitmap const* icon = nullptr, ByteString data = {}, String tooltip = {});
|
||||
void remove_end_segments(size_t segment_index);
|
||||
void relayout();
|
||||
|
||||
size_t segment_count() const { return m_segments.size(); }
|
||||
DeprecatedString segment_data(size_t index) const { return m_segments[index].data; }
|
||||
Optional<size_t> find_segment_with_data(DeprecatedString const& data);
|
||||
ByteString segment_data(size_t index) const { return m_segments[index].data; }
|
||||
Optional<size_t> find_segment_with_data(ByteString const& data);
|
||||
|
||||
void set_selected_segment(Optional<size_t> index);
|
||||
Optional<size_t> selected_segment() const { return m_selected_segment; }
|
||||
|
@ -48,8 +48,8 @@ private:
|
|||
|
||||
struct Segment {
|
||||
RefPtr<const Gfx::Bitmap> icon;
|
||||
DeprecatedString text;
|
||||
DeprecatedString data;
|
||||
ByteString text;
|
||||
ByteString data;
|
||||
int width { 0 };
|
||||
int shrunken_width { 0 };
|
||||
WeakPtr<GUI::Button> button;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue