1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:57:44 +00:00

LibGUI: Remove now-unused undo coalescing timer from GUI::TextEditor

This is no longer used since commands handle merging themselves.
This commit is contained in:
Andreas Kling 2021-05-08 22:05:37 +02:00
parent ce90d87eb6
commit 194a90884c
2 changed files with 0 additions and 16 deletions

View file

@ -132,8 +132,6 @@ protected:
explicit TextDocument(Client* client);
private:
void update_undo();
NonnullOwnPtrVector<TextDocumentLine> m_lines;
Vector<TextDocumentSpan> m_spans;
@ -141,7 +139,6 @@ private:
bool m_client_notifications_enabled { true };
UndoStack m_undo_stack;
RefPtr<Core::Timer> m_undo_timer;
RegexResult m_regex_result;
size_t m_regex_result_match_index { 0 };