From f28253683cf22a06a0948411fa5a1f677b5b0fc0 Mon Sep 17 00:00:00 2001 From: "akkana%netscape.com" Date: Wed, 10 Mar 1999 22:50:51 +0000 Subject: [PATCH] Comment out debug prints git-svn-id: svn://10.0.0.236/trunk@23595 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/editor/base/nsEditor.cpp | 8 ++++---- mozilla/editor/libeditor/base/nsEditor.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mozilla/editor/base/nsEditor.cpp b/mozilla/editor/base/nsEditor.cpp index f6550133e04..78004932d54 100644 --- a/mozilla/editor/base/nsEditor.cpp +++ b/mozilla/editor/base/nsEditor.cpp @@ -780,7 +780,7 @@ NS_IMETHODIMP nsEditor::SelectAll() NS_IMETHODIMP nsEditor::Cut() { - printf("nsEditor::Cut\n"); + //printf("nsEditor::Cut\n"); nsresult res = Copy(); if (NS_SUCCEEDED(res)) res = DeleteSelection(eLTR); @@ -789,7 +789,7 @@ NS_IMETHODIMP nsEditor::Cut() NS_IMETHODIMP nsEditor::Copy() { - printf("nsEditor::Copy\n"); + //printf("nsEditor::Copy\n"); // Get the nsSelectionMgr: // XXX BWEEP BWEEP TEMPORARY! @@ -816,7 +816,7 @@ NS_IMETHODIMP nsEditor::Copy() NS_IMETHODIMP nsEditor::Paste() { - printf("nsEditor::Paste\n"); + //printf("nsEditor::Paste\n"); // Get the nsSelectionMgr: // XXX BWEEP BWEEP TEMPORARY! @@ -841,7 +841,7 @@ NS_IMETHODIMP nsEditor::Paste() // Now we have the selection mgr. Get its contents as text (for now): selectionMgr->PasteTextBlocking(&stuffToPaste); - printf("Trying to insert '%s'\n", stuffToPaste.ToNewCString()); + //printf("Trying to insert '%s'\n", stuffToPaste.ToNewCString()); // Now let InsertText handle the hard stuff: return InsertText(stuffToPaste); diff --git a/mozilla/editor/libeditor/base/nsEditor.cpp b/mozilla/editor/libeditor/base/nsEditor.cpp index f6550133e04..78004932d54 100644 --- a/mozilla/editor/libeditor/base/nsEditor.cpp +++ b/mozilla/editor/libeditor/base/nsEditor.cpp @@ -780,7 +780,7 @@ NS_IMETHODIMP nsEditor::SelectAll() NS_IMETHODIMP nsEditor::Cut() { - printf("nsEditor::Cut\n"); + //printf("nsEditor::Cut\n"); nsresult res = Copy(); if (NS_SUCCEEDED(res)) res = DeleteSelection(eLTR); @@ -789,7 +789,7 @@ NS_IMETHODIMP nsEditor::Cut() NS_IMETHODIMP nsEditor::Copy() { - printf("nsEditor::Copy\n"); + //printf("nsEditor::Copy\n"); // Get the nsSelectionMgr: // XXX BWEEP BWEEP TEMPORARY! @@ -816,7 +816,7 @@ NS_IMETHODIMP nsEditor::Copy() NS_IMETHODIMP nsEditor::Paste() { - printf("nsEditor::Paste\n"); + //printf("nsEditor::Paste\n"); // Get the nsSelectionMgr: // XXX BWEEP BWEEP TEMPORARY! @@ -841,7 +841,7 @@ NS_IMETHODIMP nsEditor::Paste() // Now we have the selection mgr. Get its contents as text (for now): selectionMgr->PasteTextBlocking(&stuffToPaste); - printf("Trying to insert '%s'\n", stuffToPaste.ToNewCString()); + //printf("Trying to insert '%s'\n", stuffToPaste.ToNewCString()); // Now let InsertText handle the hard stuff: return InsertText(stuffToPaste);