diff options
author | nyamatongwe <unknown> | 2001-03-31 08:11:37 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-03-31 08:11:37 +0000 |
commit | 939b30d442e44a8ceced6e5d847218e109a4962c (patch) | |
tree | 39c32216b88ed22650bfaeba5cde22e053bc82e6 | |
parent | c655ccf7f165d92726f76f9fb1ea180c0a1997cc (diff) | |
download | scintilla-mirror-939b30d442e44a8ceced6e5d847218e109a4962c.tar.gz |
Removed debugging from URI drop.
-rw-r--r-- | gtk/ScintillaGTK.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index efec462c1..d53c01af1 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -834,7 +834,6 @@ void ScintillaGTK::ReceivedDrop(GtkSelectionData *selection_data) { if (selection_data->type == GDK_TARGET_STRING) { if (selection_data->length > 0) { char *ptr = reinterpret_cast<char *>(selection_data->data); -printf("Text: %s\n", ptr); // 3rd argument is false because the deletion of the moved data is handle by GetSelection bool isRectangular = ((selection_data->length > 1) && (ptr[selection_data->length-1] == 0 && ptr[selection_data->length-2] == '\n')); @@ -842,9 +841,6 @@ printf("Text: %s\n", ptr); } } else { char *ptr = reinterpret_cast<char *>(selection_data->data); -printf("Drop: %ld %d\n", selection_data->type, selection_data->length); -printf("URI: %s\n", selection_data->data); - pdoc->InsertString(currentPos, ptr); NotifyURIsDropped(ptr); } Redraw(); |