summaryrefslogtreecommitdiff
path: root/src/user_interface.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-03-07 01:12:37 +0000
committerMaxime Coste <mawww@kakoune.org>2017-03-07 01:12:37 +0000
commitf0ae0b84102a0cb7d0dda0b8b7b1ba425d5d6eb7 (patch)
tree0a38687f1796139771873cd760192af747baf4b4 /src/user_interface.hh
parent6373338c50a9431de7440b9274a079b4dc6c5755 (diff)
Replace IdMap with HashMap
Diffstat (limited to 'src/user_interface.hh')
-rw-r--r--src/user_interface.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user_interface.hh b/src/user_interface.hh
index a6a65885..b202f188 100644
--- a/src/user_interface.hh
+++ b/src/user_interface.hh
@@ -2,7 +2,7 @@
#define user_interface_hh_INCLUDED
#include "array_view.hh"
-#include "id_map.hh"
+#include "hash_map.hh"
#include <functional>
@@ -66,7 +66,7 @@ public:
virtual void set_on_key(OnKeyCallback callback) = 0;
- using Options = IdMap<String, MemoryDomain::Options>;
+ using Options = HashMap<String, String, MemoryDomain::Options>;
virtual void set_ui_options(const Options& options) = 0;
};