[haiku-commits] haiku: hrev45089 - src/apps/mail

  • From: stpere@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 25 Dec 2012 20:45:09 +0100 (CET)

hrev45089 adds 1 changeset to branch 'master'
old head: 5eea8a566d49cf76059b9a1aee99531af2672dbd
new head: 9abf41a7fe5d490686228dc4bc5f95a6bda15433
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=9abf41a+%5E5eea8a5

----------------------------------------------------------------------------

9abf41a: Mail: remove un-intended debugging code committed

                                [ Philippe Saint-Pierre <stpere@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45089
Commit:      9abf41a7fe5d490686228dc4bc5f95a6bda15433
URL:         http://cgit.haiku-os.org/haiku/commit/?id=9abf41a
Author:      Philippe Saint-Pierre <stpere@xxxxxxxxx>
Date:        Tue Dec 25 19:43:02 2012 UTC

----------------------------------------------------------------------------

1 file changed, 6 deletions(-)
src/apps/mail/Content.cpp | 6 ------

----------------------------------------------------------------------------

diff --git a/src/apps/mail/Content.cpp b/src/apps/mail/Content.cpp
index b1a962b..54927c2 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();


Other related posts:

  • » [haiku-commits] haiku: hrev45089 - src/apps/mail - stpere