From 9abf41a7fe5d490686228dc4bc5f95a6bda15433 Mon Sep 17 00:00:00 2001 From: Philippe Saint-Pierre Date: Tue, 25 Dec 2012 14:43:02 -0500 Subject: [PATCH] Mail: remove un-intended debugging code committed --- src/apps/mail/Content.cpp | 6 ------ 1 file changed, 6 deletions(-) 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();