From 939b30d442e44a8ceced6e5d847218e109a4962c Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sat, 31 Mar 2001 08:11:37 +0000 Subject: Removed debugging from URI drop. --- gtk/ScintillaGTK.cxx | 4 ---- 1 file changed, 4 deletions(-) (limited to 'gtk') 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(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(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(); -- cgit v1.2.3