diff options
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)) { } |
