aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-11-08 11:01:31 +0000
committernyamatongwe <unknown>2000-11-08 11:01:31 +0000
commitc9bb15baa6165f8d7bd06c0eb372c5bed8d5a7e5 (patch)
treed58bbb6464ff6289407fb2cccca039f65b36b31e /src/Editor.h
parent65ed219ff652f65f5ee0c452e77907208171a6dc (diff)
downloadscintilla-mirror-c9bb15baa6165f8d7bd06c0eb372c5bed8d5a7e5.tar.gz
Changed keystroke handling so that GTK+ stops keys that are mapped to
commands which allows them to propogate up to containers rather than requiring explicit propogation.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 1d0b47c56..3733aedc1 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -258,7 +258,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
virtual void CancelModes();
virtual int KeyCommand(unsigned int iMessage);
virtual int KeyDefault(int /* key */, int /*modifiers*/);
- int KeyDown(int key, bool shift, bool ctrl, bool alt);
+ int KeyDown(int key, bool shift, bool ctrl, bool alt, bool *consumed=0);
int GetWhitespaceVisible();
void SetWhitespaceVisible(int view);