PHOTON BUILD only

Removed an errant printf


git-svn-id: svn://10.0.0.236/trunk@118256 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
briane%qnx.com
2002-04-05 15:24:37 +00:00
parent 23a7527e3f
commit 5e65a555db

View File

@@ -255,7 +255,6 @@ NS_IMETHODIMP nsClipboard::SetNativeClipboardData(PRInt32 aWhichClipboard)
nsPrimitiveHelpers::ConvertUnicodeToPlatformPlainText( (PRUnichar*)data, dataLen/2, &plain, &len );
cliphdr[index].length = len+1;
cliphdr[index].data = plain;
printf("Set TEXT: %s\n", plain);
}
index++;
}
@@ -351,7 +350,6 @@ nsClipboard::GetNativeClipboardData(nsITransferable * aTransferable,
}
else if (strcmp(cliptype.type, Ph_CLIPBOARD_TYPE_TEXT) == 0)
{
printf("Get TEXT: %s\n", (char*) data);
nsPrimitiveHelpers::ConvertPlatformPlainTextToUnicode( (char*) data, dataLen, &unicode, &len_unicode );
len_unicode--;
len_unicode *= 2;