diff options
Diffstat (limited to 'src/Decoration.h')
-rw-r--r-- | src/Decoration.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; } }; |