summaryrefslogtreecommitdiffstats
path: root/macosx/tclMacOSXFCmd.c
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2013-02-04 10:51:00 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2013-02-04 10:51:00 (GMT)
commit321149f834413ad85324cdc52d552fc5cb9a7c82 (patch)
tree0fec8c7f2acfd218238c4f65771d849440f1b44e /macosx/tclMacOSXFCmd.c
parent6685c10a4d204372333b21dfa1e96204bbe1f4b1 (diff)
downloadtcl-321149f834413ad85324cdc52d552fc5cb9a7c82.zip
tcl-321149f834413ad85324cdc52d552fc5cb9a7c82.tar.gz
tcl-321149f834413ad85324cdc52d552fc5cb9a7c82.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.
FossilOrigin-Name: af25d8dc8c18b1d8bed3727b7b6e4de7d5bb15e2
Diffstat (limited to 'macosx/tclMacOSXFCmd.c')
-rw-r--r--macosx/tclMacOSXFCmd.c2
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;