aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gtk/ScintillaGTK.cxx4
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();