summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/tk/files/tk-8.5.11-fix-name-collision-uclibc.patch')
-rw-r--r--dev-lang/tk/files/tk-8.5.11-fix-name-collision-uclibc.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-lang/tk/files/tk-8.5.11-fix-name-collision-uclibc.patch b/dev-lang/tk/files/tk-8.5.11-fix-name-collision-uclibc.patch
deleted file mode 100644
index a92717ac9d8b..000000000000
--- a/dev-lang/tk/files/tk-8.5.11-fix-name-collision-uclibc.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff -Naur tk8.5.11.orig/generic/ttk/ttkTreeview.c tk8.5.11/generic/ttk/ttkTreeview.c
---- tk8.5.11.orig/generic/ttk/ttkTreeview.c 2011-11-01 10:05:27.000000000 -0400
-+++ tk8.5.11/generic/ttk/ttkTreeview.c 2012-11-04 13:23:41.000000000 -0500
-@@ -485,11 +485,11 @@
- }
- }
-
--/* + unshare(objPtr) --
-+/* + unshareObj(objPtr) --
- * Ensure that a Tcl_Obj * has refcount 1 -- either return objPtr
- * itself, or a duplicated copy.
- */
--static Tcl_Obj *unshare(Tcl_Obj *objPtr)
-+static Tcl_Obj *unshareObj(Tcl_Obj *objPtr)
- {
- if (Tcl_IsShared(objPtr)) {
- Tcl_Obj *newObj = Tcl_DuplicateObj(objPtr);
-@@ -2525,7 +2525,7 @@
- } else { /* set column */
- int length;
-
-- item->valuesObj = unshare(item->valuesObj);
-+ item->valuesObj = unshareObj(item->valuesObj);
-
- /* Make sure -values is fully populated:
- */
-@@ -2826,7 +2826,7 @@
- */
- for (parent = item->parent; parent; parent = parent->parent) {
- if (!(parent->state & TTK_STATE_OPEN)) {
-- parent->openObj = unshare(parent->openObj);
-+ parent->openObj = unshareObj(parent->openObj);
- Tcl_SetBooleanObj(parent->openObj, 1);
- parent->state |= TTK_STATE_OPEN;
- TtkRedisplayWidget(&tv->core);