diff options
author | Neil <nyamatongwe@gmail.com> | 2016-03-29 15:38:45 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-03-29 15:38:45 +1100 |
commit | 0604389a02a2cb5f33f5f84e460ad3d7a55f1fc4 (patch) | |
tree | 80b37f718682eaeb207d6b82b4c6940a8b6e8c11 /src/Editor.h | |
parent | b5618916b1164f90254ebb8c6eed2b5f86fdcc12 (diff) | |
download | scintilla-mirror-0604389a02a2cb5f33f5f84e460ad3d7a55f1fc4.tar.gz |
Feature [feature-requests:#1142]. Allow Super modifier on GTK+.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 67aad42d7..9cc648e84 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -414,7 +414,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void DelCharBack(bool allowLineStartDeletion); virtual void ClaimSelection() = 0; - static int ModifierFlags(bool shift, bool ctrl, bool alt, bool meta=false); + static int ModifierFlags(bool shift, bool ctrl, bool alt, bool meta=false, bool super=false); virtual void NotifyChange() = 0; virtual void NotifyFocus(bool focus); virtual void SetCtrlID(int identifier); |