diff options
author | Neil <nyamatongwe@gmail.com> | 2017-06-12 13:49:46 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-06-12 13:49:46 +1000 |
commit | c94124bb05c4386863c160bb44d5592ba4fe989e (patch) | |
tree | 5086197e32cbf91efb8edd7e87f16a7d99cfead7 /src/ScintillaBase.h | |
parent | e015bc583b10e4f3a9889c9ae296de000d1d4646 (diff) | |
download | scintilla-mirror-c94124bb05c4386863c160bb44d5592ba4fe989e.tar.gz |
Backport: Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form.
All events include a set of keyboard modifier flags.
Older calls that passed individual parameters for each key were removed.
Backport of changeset 6310:af83baede430.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index 9b8f08ae3..f63cf192c 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -88,7 +88,6 @@ protected: void ContextMenu(Point pt); void ButtonDownWithModifiers(Point pt, unsigned int curTime, int modifiers) override; - void ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt) override; void RightButtonDownWithModifiers(Point pt, unsigned int curTime, int modifiers) override; void NotifyStyleToNeeded(Sci::Position endStyleNeeded) override; |