diff options
Diffstat (limited to 'scintilla/src/KeyMap.h')
-rw-r--r-- | scintilla/src/KeyMap.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scintilla/src/KeyMap.h b/scintilla/src/KeyMap.h index 6584b29..2b7ebe6 100644 --- a/scintilla/src/KeyMap.h +++ b/scintilla/src/KeyMap.h @@ -32,9 +32,7 @@ public: /**
*/
class KeyMap {
- KeyToCommand *kmap;
- int len;
- int alloc;
+ std::vector<KeyToCommand> kmap;
static const KeyToCommand MapDefault[];
public:
|