From 70a79ea70c4476e41aa314840c07e3e672309a59 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 10 Jan 2022 15:04:52 +0000 Subject: [PATCH] LibGUI: Remove unused method definitions from GlyphMapWidget These got added recently but were never implemented, so let's remove them. :^) --- Userland/Libraries/LibGUI/GlyphMapWidget.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Userland/Libraries/LibGUI/GlyphMapWidget.h b/Userland/Libraries/LibGUI/GlyphMapWidget.h index 27cfd06429..1ba13a9632 100644 --- a/Userland/Libraries/LibGUI/GlyphMapWidget.h +++ b/Userland/Libraries/LibGUI/GlyphMapWidget.h @@ -71,10 +71,6 @@ private: Gfx::IntRect get_outer_rect(int glyph) const; - void cut_glyph(int glyph); - void copy_glyph(int glyph); - void paste_glyph(int glyph); - void delete_glyph(int glyph); void recalculate_content_size(); int m_glyph_count { 0x110000 };