diff options
| -rw-r--r-- | gtk/ScintillaGTK.cxx | 2 | ||||
| -rw-r--r-- | win32/scintilla.mak | 6 | ||||
| -rw-r--r-- | win32/scintilla_vc6.mak | 3 | 
3 files changed, 7 insertions, 4 deletions
| diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 1b507e1e4..5319ffa2d 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1508,7 +1508,7 @@ void ScintillaGTK::ReceivedDrop(GtkSelectionData *selection_data) {  			DropAt(posDrop, selText.s, false, selText.rectangular);  		}  	} else if (selection_data->length > 0) { -	    fprintf(stderr, "ReceivedDrop other %p\n", static_cast<void *>(selection_data->type)); +	    //~ fprintf(stderr, "ReceivedDrop other %p\n", static_cast<void *>(selection_data->type));  	}  	Redraw();  } diff --git a/win32/scintilla.mak b/win32/scintilla.mak index a27063038..2ff1524db 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -90,8 +90,8 @@ SOBJS=\  	$(DIR_O)\AutoComplete.obj \  	$(DIR_O)\CallTip.obj \  	$(DIR_O)\CellBuffer.obj \ -	$(DIR_O)\ContractionState.obj \  	$(DIR_O)\CharClassify.obj \ +	$(DIR_O)\ContractionState.obj \  	$(DIR_O)\Document.obj \  	$(DIR_O)\Editor.obj \  	$(DIR_O)\Indicator.obj \ @@ -176,8 +176,8 @@ LOBJS=\  	$(DIR_O)\AutoComplete.obj \  	$(DIR_O)\CallTip.obj \  	$(DIR_O)\CellBuffer.obj \ -	$(DIR_O)\ContractionState.obj \  	$(DIR_O)\CharClassify.obj \ +	$(DIR_O)\ContractionState.obj \  	$(DIR_O)\Document.obj \  	$(DIR_O)\DocumentAccessor.obj \  	$(DIR_O)\Editor.obj \ @@ -250,9 +250,9 @@ $(DIR_O)\CallTip.obj: ../src/CallTip.cxx ../include/Platform.h \   ../include/Scintilla.h ../src/CallTip.h  $(DIR_O)\CellBuffer.obj: ../src/CellBuffer.cxx ../include/Platform.h \   ../include/Scintilla.h ../src/SVector.h ../src/CellBuffer.h +$(DIR_O)\CharClassify.obj: ../src/CharClassify.cxx ../src/CharClassify.h  $(DIR_O)\ContractionState.obj: ../src/ContractionState.cxx ../include/Platform.h \   ../src/ContractionState.h -$(DIR_O)\CharClassify.obj: ../src/CharClassify.cxx ../src/CharClassify.h  $(DIR_O)\Document.obj: ../src/Document.cxx ../include/Platform.h \   ../include/Scintilla.h ../src/SVector.h ../src/CellBuffer.h \    ../src/CharClassify.h ../src/Document.h ../src/RESearch.h diff --git a/win32/scintilla_vc6.mak b/win32/scintilla_vc6.mak index 5741f8105..60683abdc 100644 --- a/win32/scintilla_vc6.mak +++ b/win32/scintilla_vc6.mak @@ -92,6 +92,7 @@ SOBJS=\  	$(DIR_O)\AutoComplete.obj \  	$(DIR_O)\CallTip.obj \  	$(DIR_O)\CellBuffer.obj \ +	$(DIR_O)\CharClassify.obj \  	$(DIR_O)\ContractionState.obj \  	$(DIR_O)\Document.obj \  	$(DIR_O)\Editor.obj \ @@ -177,6 +178,7 @@ LOBJS=\  	$(DIR_O)\AutoComplete.obj \  	$(DIR_O)\CallTip.obj \  	$(DIR_O)\CellBuffer.obj \ +	$(DIR_O)\CharClassify.obj \  	$(DIR_O)\ContractionState.obj \  	$(DIR_O)\Document.obj \  	$(DIR_O)\DocumentAccessor.obj \ @@ -250,6 +252,7 @@ $(DIR_O)\CallTip.obj: ../src/CallTip.cxx ../include/Platform.h \   ../include/Scintilla.h ../src/CallTip.h  $(DIR_O)\CellBuffer.obj: ../src/CellBuffer.cxx ../include/Platform.h \   ../include/Scintilla.h ../src/SVector.h ../src/CellBuffer.h +$(DIR_O)\CharClassify.obj: ../src/CharClassify.cxx ../src/CharClassify.h  $(DIR_O)\ContractionState.obj: ../src/ContractionState.cxx ../include/Platform.h \   ../src/ContractionState.h  $(DIR_O)\Document.obj: ../src/Document.cxx ../include/Platform.h \ | 
