From dd6a0dd0f78736143d9e5956791c93e0072b27ba Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 26 Mar 2022 19:06:06 +0100 Subject: [PATCH] LibWeb: Remove unused declarations from Layout::TextNode --- Userland/Libraries/LibWeb/Layout/TextNode.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/Layout/TextNode.h b/Userland/Libraries/LibWeb/Layout/TextNode.h index 5a1e735277..532867ba50 100644 --- a/Userland/Libraries/LibWeb/Layout/TextNode.h +++ b/Userland/Libraries/LibWeb/Layout/TextNode.h @@ -54,8 +54,6 @@ public: private: virtual bool is_text_node() const final { return true; } - void paint_cursor_if_needed(PaintContext&, const LineBoxFragment&) const; - void paint_text_decoration(Gfx::Painter&, LineBoxFragment const&) const; String m_text_for_rendering; };