From ccf6cef42382e7c042c20be47d7624f20094cb1c Mon Sep 17 00:00:00 2001 From: santiago Date: Sun, 9 Oct 2022 13:09:03 +0200 Subject: [PATCH] remove crap --- TextEditor.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/TextEditor.cpp b/TextEditor.cpp index 5172f559..c90b47cb 100644 --- a/TextEditor.cpp +++ b/TextEditor.cpp @@ -2188,8 +2188,6 @@ void TextEditor::Delete(bool aWordMode) Coordinates start = GetActualCursorCoordinates(c); Coordinates end = start; end.mColumn++; - if (GetText(start, end).compare("\n") == 0) - std::cout << "asdf\n"; u.mRemoved.push_back({ GetText(start, end), start, end }); auto d = UTF8CharLength(line[cindex].mChar);