diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-12-10 19:40:56 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-12-10 19:40:56 (GMT) |
commit | c80571553ff04380fb4febfbdb26234a25a43637 (patch) | |
tree | a12545265f6a950db37dc5f129ddb7855ef23711 /generic/tkObj.c | |
parent | 5a205d762755ffb019e3e190b0efb03ac15aa62e (diff) | |
download | tk-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.c | 6 |
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 */ }; /* |