aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-02-12 03:34:52 +0000
committernyamatongwe <unknown>2002-02-12 03:34:52 +0000
commitf540bc2de8cefe784c71b3401ebaf971043546e7 (patch)
treef732e4f8d903e9a91a1e875f403b6781ee897038
parent1ff8c42c2f48973e873ed61f36a0e3be3c830b84 (diff)
downloadscintilla-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.
-rw-r--r--src/KeyMap.h2
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();