diff --git a/src/apps/mail/Content.cpp b/src/apps/mail/Content.cpp index b1a962b5a3..54927c2441 100644 --- a/src/apps/mail/Content.cpp +++ b/src/apps/mail/Content.cpp @@ -3291,9 +3291,6 @@ TTextView::Undo(BClipboard */*clipboard*/) char *text; status_t status; - printf("UNDO------\n"); - fUndoBuffer.PrintToStream(); - status = fUndoBuffer.Undo(&text, &length, &offset, &history, &cursorPos); if (status == B_OK) { fUndoBuffer.Off(); @@ -3344,9 +3341,6 @@ TTextView::Redo() status_t status; bool replaced; - printf("REDO------\n"); - fUndoBuffer.PrintToStream(); - status = fUndoBuffer.Redo(&text, &length, &offset, &history, &cursorPos, &replaced); if (status == B_OK) { fUndoBuffer.Off();