From 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 17 Apr 2016 20:03:14 +0300 Subject: Remove override keyword, if it present with final. --- src/gui/widgets/serverslistbox.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/widgets/serverslistbox.h') diff --git a/src/gui/widgets/serverslistbox.h b/src/gui/widgets/serverslistbox.h index ff3262296..7a4cf0145 100644 --- a/src/gui/widgets/serverslistbox.h +++ b/src/gui/widgets/serverslistbox.h @@ -43,7 +43,7 @@ class ServersListBox final : public ListBox mHighlightColor = getThemeColor(ThemeColorId::HIGHLIGHT); } - void draw(Graphics *const graphics) override final A_NONNULL(2) + void draw(Graphics *const graphics) final A_NONNULL(2) { if (!mListModel) return; @@ -140,12 +140,12 @@ class ServersListBox final : public ListBox } } - void safeDraw(Graphics *const graphics) override final A_NONNULL(2) + void safeDraw(Graphics *const graphics) final A_NONNULL(2) { ServersListBox::draw(graphics); } - unsigned int getRowHeight() const override final + unsigned int getRowHeight() const final { return 2 * getFont()->getHeight() + 5; } -- cgit v1.2.3-60-g2f50