diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-10-30 14:00:42 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-10-30 14:04:57 +0000 |
| commit | e38ba6ce3d62c2629ebdaad41258d5e4b48f5296 (patch) | |
| tree | 609ef5d7df44e7222ab961634b7c81c97102881a /src/keymap_manager.hh | |
| parent | 8649371ff23df34c0bf6ca34c1d8b61d7482821e (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.hh | 7 |
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 |
