summaryrefslogtreecommitdiffstats
path: root/generic/tkObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-10 19:40:56 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-10 19:40:56 (GMT)
commitc80571553ff04380fb4febfbdb26234a25a43637 (patch)
treea12545265f6a950db37dc5f129ddb7855ef23711 /generic/tkObj.c
parent5a205d762755ffb019e3e190b0efb03ac15aa62e (diff)
downloadtk-c80571553ff04380fb4febfbdb26234a25a43637.zip
tk-c80571553ff04380fb4febfbdb26234a25a43637.tar.gz
tk-c80571553ff04380fb4febfbdb26234a25a43637.tar.bz2
No longer export setFromAnyProc's, for "pixel", "mm" and "window" objTypes: They cannot be called directly anyway.
Diffstat (limited to 'generic/tkObj.c')
-rw-r--r--generic/tkObj.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c
index 90fedbc..2c7788a 100644
--- a/generic/tkObj.c
+++ b/generic/tkObj.c
@@ -104,7 +104,7 @@ static const Tcl_ObjType pixelObjType = {
FreePixelInternalRep, /* freeIntRepProc */
DupPixelInternalRep, /* dupIntRepProc */
NULL, /* updateStringProc */
- SetPixelFromAny /* setFromAnyProc */
+ NULL /* setFromAnyProc */
};
/*
@@ -118,7 +118,7 @@ static const Tcl_ObjType mmObjType = {
FreeMMInternalRep, /* freeIntRepProc */
DupMMInternalRep, /* dupIntRepProc */
UpdateStringOfMM, /* updateStringProc */
- SetMMFromAny /* setFromAnyProc */
+ NULL /* setFromAnyProc */
};
/*
@@ -131,7 +131,7 @@ static const Tcl_ObjType windowObjType = {
FreeWindowInternalRep, /* freeIntRepProc */
DupWindowInternalRep, /* dupIntRepProc */
NULL, /* updateStringProc */
- SetWindowFromAny /* setFromAnyProc */
+ NULL /* setFromAnyProc */
};
/*