diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-04 10:51:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-04 10:51:00 (GMT) |
commit | 586e53a4ac38b4a017a8be29a3832632ef62705a (patch) | |
tree | 0fec8c7f2acfd218238c4f65771d849440f1b44e /macosx/tclMacOSXFCmd.c | |
parent | d92d307894b14bbb065fdb65c5158f391da00cf1 (diff) | |
download | tcl-586e53a4ac38b4a017a8be29a3832632ef62705a.zip tcl-586e53a4ac38b4a017a8be29a3832632ef62705a.tar.gz tcl-586e53a4ac38b4a017a8be29a3832632ef62705a.tar.bz2 |
Eliminate all Tcl_ConvertToType calls and all direct calls to typePtr->setFromAnyProc (except the call from inside the Tcl_ConvertToType function) from the Tcl core.
Diffstat (limited to 'macosx/tclMacOSXFCmd.c')
-rw-r--r-- | macosx/tclMacOSXFCmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tclMacOSXFCmd.c b/macosx/tclMacOSXFCmd.c index 6016c6d..8ec1288 100644 --- a/macosx/tclMacOSXFCmd.c +++ b/macosx/tclMacOSXFCmd.c @@ -579,7 +579,7 @@ GetOSTypeFromObj( int result = TCL_OK; if (objPtr->typePtr != &tclOSTypeType) { - result = tclOSTypeType.setFromAnyProc(interp, objPtr); + result = SetOSTypeFromAny(interp, objPtr); } *osTypePtr = (OSType) objPtr->internalRep.longValue; return result; |