aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-04-07 18:02:19 +1000
committerNeil <nyamatongwe@gmail.com>2017-04-07 18:02:19 +1000
commit978e85754e25c46bddbc034938fc51e9d35372c0 (patch)
treed629ed2de84e858c2b0b052bdef9f0f73f5ad1cb
parentb9b6ef0c4617d99774df4b46c853469ef62cd7c1 (diff)
downloadscintilla-mirror-978e85754e25c46bddbc034938fc51e9d35372c0.tar.gz
Drop "virtual" from methods that do not need to be virtual.
-rw-r--r--src/Decoration.h4
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;
}
};