From 978e85754e25c46bddbc034938fc51e9d35372c0 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 7 Apr 2017 18:02:19 +1000 Subject: Drop "virtual" from methods that do not need to be virtual. --- src/Decoration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Decoration.h b/src/Decoration.h index 6f5fe6283..881bd1ff5 100644 --- a/src/Decoration.h +++ b/src/Decoration.h @@ -66,10 +66,10 @@ public: int Start(int indicator, int position); int End(int indicator, int position); - virtual bool ClickNotified() const { + bool ClickNotified() const { return clickNotified; } - virtual void SetClickNotified(bool notified) { + void SetClickNotified(bool notified) { clickNotified = notified; } }; -- cgit v1.2.3