1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 17:28:11 +00:00

LibLine: Make actual_rendered_string_metrics() static

This function didn't depend on the editor itself.
This commit is contained in:
AnotherTest 2020-08-18 01:47:19 +04:30 committed by Andreas Kling
parent ff577e22a3
commit ae9211037e
2 changed files with 6 additions and 6 deletions

View file

@ -173,8 +173,8 @@ public:
void register_key_input_callback(const KeyBinding&);
void register_key_input_callback(Key, Function<bool(Editor&)> callback);
StringMetrics actual_rendered_string_metrics(const StringView&) const;
StringMetrics actual_rendered_string_metrics(const Utf32View&) const;
static StringMetrics actual_rendered_string_metrics(const StringView&);
static StringMetrics actual_rendered_string_metrics(const Utf32View&);
Function<Vector<CompletionSuggestion>(const Editor&)> on_tab_complete;
Function<void()> on_interrupt_handled;
@ -275,7 +275,7 @@ private:
Title = 9,
};
VTState actual_rendered_string_length_step(StringMetrics&, size_t& length, u32, u32, VTState) const;
static VTState actual_rendered_string_length_step(StringMetrics&, size_t& length, u32, u32, VTState);
// ^Core::Object
virtual void save_to(JsonObject&) override;