summaryrefslogtreecommitdiff
path: root/src/keymap_manager.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-10-30 14:00:42 +0000
committerMaxime Coste <frrrwww@gmail.com>2014-10-30 14:04:57 +0000
commite38ba6ce3d62c2629ebdaad41258d5e4b48f5296 (patch)
tree609ef5d7df44e7222ab961634b7c81c97102881a /src/keymap_manager.hh
parent8649371ff23df34c0bf6ca34c1d8b61d7482821e (diff)
Add scope class and encapsulate Options, Keymaps, Aliases and Hooks in it
Diffstat (limited to 'src/keymap_manager.hh')
-rw-r--r--src/keymap_manager.hh7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/keymap_manager.hh b/src/keymap_manager.hh
index 489ad301..6521f69c 100644
--- a/src/keymap_manager.hh
+++ b/src/keymap_manager.hh
@@ -34,7 +34,7 @@ private:
KeymapManager()
: m_parent(nullptr) {}
// the only one allowed to construct a root map manager
- friend class GlobalKeymaps;
+ friend class Scope;
KeymapManager* m_parent;
@@ -43,11 +43,6 @@ private:
Keymap m_mapping;
};
-class GlobalKeymaps : public KeymapManager,
- public Singleton<GlobalKeymaps>
-{
-};
-
}
#endif // keymap_manager_hh_INCLUDED