From 2a6a2ced8ffa7b73d5acb04a3c55b43ffb6eb353 Mon Sep 17 00:00:00 2001 From: "pavlov%netscape.com" Date: Tue, 7 Nov 2000 08:29:59 +0000 Subject: [PATCH] commenting out some printfs r=ramiro git-svn-id: svn://10.0.0.236/trunk@82377 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/widget/src/xpwidgets/nsTransferable.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mozilla/widget/src/xpwidgets/nsTransferable.cpp b/mozilla/widget/src/xpwidgets/nsTransferable.cpp index abe3b48d2b6..0f6ab1a2897 100644 --- a/mozilla/widget/src/xpwidgets/nsTransferable.cpp +++ b/mozilla/widget/src/xpwidgets/nsTransferable.cpp @@ -97,14 +97,15 @@ DataStruct::SetData ( nsISupports* aData, PRUint32 aDataLen ) if (aDataLen > LARGE_DATASET_SIZE) { // if so, cache it to disk instead of memory if ( NS_SUCCEEDED(WriteCache(aData, aDataLen)) ) { - printf("->>>>>>>>>>>>>> Wrote Clipboard to cache file\n"); +// printf("->>>>>>>>>>>>>> Wrote Clipboard to cache file\n"); return; } + /* else printf("->>>>>>>>>>>>>> Writing Clipboard to cache file FAILED\n"); - + */ } else { - printf("->>>>>>>>>>>>>> Write Clipboard to memory\n"); +// printf("->>>>>>>>>>>>>> Write Clipboard to memory\n"); } mData = aData; @@ -121,7 +122,7 @@ DataStruct::GetData ( nsISupports** aData, PRUint32 *aDataLen ) // if so, read it in and pass it back // ReadCache creates memory and copies the data into it. if ( NS_SUCCEEDED(ReadCache(aData, aDataLen)) ) { - printf("->>>>>>>>>>>>>> Read Clipboard from cache file\n"); +// printf("->>>>>>>>>>>>>> Read Clipboard from cache file\n"); return; } else { @@ -132,7 +133,7 @@ DataStruct::GetData ( nsISupports** aData, PRUint32 *aDataLen ) return; } } else { - printf("->>>>>>>>>>>>>> Read Clipboard from memory\n"); +// printf("->>>>>>>>>>>>>> Read Clipboard from memory\n"); } *aData = mData;