diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-05-12 13:59:21 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-05-13 19:01:27 +0100 |
| commit | 67a251ffd560d79e8337fef0aee8d8285d34355e (patch) | |
| tree | 852a301689b7612f958cda7728004b59aa47e335 /src/dynamic_selection_list.hh | |
| parent | ddd8f8d392ae059298ffa6175165f6e224a009f9 (diff) | |
Pass a at_end param to BufferChangeListener::on_{insert,erase}
Diffstat (limited to 'src/dynamic_selection_list.hh')
| -rw-r--r-- | src/dynamic_selection_list.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dynamic_selection_list.hh b/src/dynamic_selection_list.hh index 4bfbd39a..2f408907 100644 --- a/src/dynamic_selection_list.hh +++ b/src/dynamic_selection_list.hh @@ -19,8 +19,8 @@ public: void check_invariant() const; private: - void on_insert(const Buffer& buffer, ByteCoord begin, ByteCoord end) override; - void on_erase(const Buffer& buffer, ByteCoord begin, ByteCoord end) override; + void on_insert(const Buffer& buffer, ByteCoord begin, ByteCoord end, bool at_end) override; + void on_erase(const Buffer& buffer, ByteCoord begin, ByteCoord end, bool at_end) override; }; } |
