Codechange: use Textbuf directly, instead via several virtual functions in Window

This commit is contained in:
Rubidium
2023-07-01 22:05:07 +02:00
committed by rubidium42
parent 0316940fe8
commit 8c742b456f
7 changed files with 37 additions and 95 deletions

View File

@@ -65,6 +65,8 @@ struct Textbuf {
void DiscardMarkedText(bool update = true);
const char *GetText() const;
private:
std::unique_ptr<StringIterator> char_iter;