pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/scintilla
Module Name: pkgsrc
Committed By: joerg
Date: Thu Dec 15 23:51:03 UTC 2016
Modified Files:
pkgsrc/devel/scintilla: distinfo
Added Files:
pkgsrc/devel/scintilla/patches: patch-gtk_ScintillaGTK.cxx
Log Message:
Pointers are not ordered relative to 0.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/scintilla/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/devel/scintilla/patches/patch-gtk_ScintillaGTK.cxx
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/scintilla/distinfo
diff -u pkgsrc/devel/scintilla/distinfo:1.6 pkgsrc/devel/scintilla/distinfo:1.7
--- pkgsrc/devel/scintilla/distinfo:1.6 Tue Nov 3 03:29:32 2015
+++ pkgsrc/devel/scintilla/distinfo Thu Dec 15 23:51:03 2016
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.6 2015/11/03 03:29:32 agc Exp $
+$NetBSD: distinfo,v 1.7 2016/12/15 23:51:03 joerg Exp $
SHA1 (scintilla339.tgz) = 9e1937a9e6a41659c7fd0f1e460bf476573a652b
RMD160 (scintilla339.tgz) = 22ef0452ffb58d4861255d27a7f2f7bd436f1e1e
SHA512 (scintilla339.tgz) = 4444fa014374f20335e037db1f30e3ad8ece067a1909a45da499c388e5148b129d1f254cdbf44b4de3ef868a682a8c72f5b27403b2c86342a81a14d24f6dfaa9
Size (scintilla339.tgz) = 1313246 bytes
+SHA1 (patch-gtk_ScintillaGTK.cxx) = 0639d37f392296f98f928a4b8ca5b2e9dce9035a
Added files:
Index: pkgsrc/devel/scintilla/patches/patch-gtk_ScintillaGTK.cxx
diff -u /dev/null pkgsrc/devel/scintilla/patches/patch-gtk_ScintillaGTK.cxx:1.1
--- /dev/null Thu Dec 15 23:51:04 2016
+++ pkgsrc/devel/scintilla/patches/patch-gtk_ScintillaGTK.cxx Thu Dec 15 23:51:03 2016
@@ -0,0 +1,15 @@
+$NetBSD: patch-gtk_ScintillaGTK.cxx,v 1.1 2016/12/15 23:51:03 joerg Exp $
+
+Pointers are not ordered relative to 0.
+
+--- gtk/ScintillaGTK.cxx.orig 2016-12-13 21:23:33.721060803 +0000
++++ gtk/ScintillaGTK.cxx
+@@ -1556,7 +1556,7 @@ void ScintillaGTK::ReceivedDrop(GtkSelec
+ drop.push_back('\0');
+ NotifyURIDropped(&drop[0]);
+ } else if ((TypeOfGSD(selection_data) == GDK_TARGET_STRING) || (TypeOfGSD(selection_data) == atomUTF8)) {
+- if (TypeOfGSD(selection_data) > 0) {
++ if (TypeOfGSD(selection_data)) {
+ SelectionText selText;
+ GetGtkSelectionText(selection_data, selText);
+ DropAt(posDrop, selText.Data(), selText.Length(), false, selText.rectangular);
Home |
Main Index |
Thread Index |
Old Index