diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-05-12 23:25:15 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-05-13 20:09:06 +0100 |
| commit | ea3e92aa5e68e73fa95196332b739891bbf3f24f (patch) | |
| tree | 1b91673cdbec34a9dcb592858890fc6db1255ff9 /src/input_handler.cc | |
| parent | 7bc73b7ef9402f81a6bb496b03ba84197f76e642 (diff) | |
SelectionList know its buffer and timestamp
Diffstat (limited to 'src/input_handler.cc')
| -rw-r--r-- | src/input_handler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc index f12a8854..62e3068f 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -875,9 +875,9 @@ void InputMode::reset_normal_mode() m_input_handler.reset_normal_mode(); } -InputHandler::InputHandler(Buffer& buffer, SelectionList selections, String name) +InputHandler::InputHandler(SelectionList selections, String name) : m_mode(new InputModes::Normal(*this)), - m_context(*this, buffer, std::move(selections), std::move(name)) + m_context(*this, std::move(selections), std::move(name)) { } |
