diff options
author | 2017-06-17 18:09:23 -0400 | |
---|---|---|
committer | 2017-06-17 18:09:23 -0400 | |
commit | c79314c9bd8efc6e521664bf4de182370c436c09 (patch) | |
tree | 9ce81d4de67843af7f293c2dc556e9c6e257bcb9 /src/scintilla_backports/6173_c9dcde8a91d3.patch | |
parent | b82ab307b7ee8bcc547aa076c17355ad7bb7ea24 (diff) | |
download | textadept-c79314c9bd8efc6e521664bf4de182370c436c09.tar.gz textadept-c79314c9bd8efc6e521664bf4de182370c436c09.zip |
Effectively updated to Scintilla 3.7.5 with select backports to 3.7.3.
Diffstat (limited to 'src/scintilla_backports/6173_c9dcde8a91d3.patch')
-rw-r--r-- | src/scintilla_backports/6173_c9dcde8a91d3.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/scintilla_backports/6173_c9dcde8a91d3.patch b/src/scintilla_backports/6173_c9dcde8a91d3.patch new file mode 100644 index 00000000..bd605934 --- /dev/null +++ b/src/scintilla_backports/6173_c9dcde8a91d3.patch @@ -0,0 +1,23 @@ +# HG changeset patch +# User Neil <nyamatongwe@gmail.com> +# Date 1491552139 -36000 +# Node ID c9dcde8a91d3c5d9f28ba3a7cead581ff880e818 +# Parent 84161436cfbc309da3b30e6fe5bc69c0a9331cfa +Drop "virtual" from methods that do not need to be virtual. + +diff -r 84161436cfbc -r c9dcde8a91d3 src/Decoration.h +--- a/src/Decoration.h Fri Apr 07 17:28:01 2017 +1000 ++++ b/src/Decoration.h Fri Apr 07 18:02:19 2017 +1000 +@@ -66,10 +66,10 @@ + 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; + } + }; |