diff options
author | nyamatongwe <unknown> | 2002-02-12 03:34:52 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-12 03:34:52 +0000 |
commit | f540bc2de8cefe784c71b3401ebaf971043546e7 (patch) | |
tree | f732e4f8d903e9a91a1e875f403b6781ee897038 /src | |
parent | 1ff8c42c2f48973e873ed61f36a0e3be3c830b84 (diff) | |
download | scintilla-mirror-f540bc2de8cefe784c71b3401ebaf971043546e7.tar.gz |
Made lexer objects const so they do not show up in map as static / globals.
File specific inline functions marker as static to ensure no bad linking.
Diffstat (limited to 'src')
-rw-r--r-- | src/KeyMap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KeyMap.h b/src/KeyMap.h index 8232b7160..364df684f 100644 --- a/src/KeyMap.h +++ b/src/KeyMap.h @@ -30,7 +30,7 @@ class KeyMap { KeyToCommand *kmap; int len; int alloc; - static KeyToCommand MapDefault[]; + static const KeyToCommand MapDefault[]; public: KeyMap(); |