diff options
author | jenglish <jenglish@flightlab.com> | 2013-02-27 14:41:41 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2013-02-27 14:41:41 (GMT) |
commit | 2b76c49e30421aa22968c63e57c49bfaa6238e2f (patch) | |
tree | e4c799bd7715375437a5ca9333297d2092c73630 /generic/tkGrab.c | |
parent | b83ed80002d8d8eb676c9f7c81a794e8216e3498 (diff) | |
download | tk-2b76c49e30421aa22968c63e57c49bfaa6238e2f.zip tk-2b76c49e30421aa22968c63e57c49bfaa6238e2f.tar.gz tk-2b76c49e30421aa22968c63e57c49bfaa6238e2f.tar.bz2 |
Revert [ac229dabaa]. There is a reason the Tcl_GetIndexFromObj wrapper
exists and is used.
Diffstat (limited to 'generic/tkGrab.c')
-rw-r--r-- | generic/tkGrab.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tkGrab.c b/generic/tkGrab.c index 8644014..2df5552 100644 --- a/generic/tkGrab.c +++ b/generic/tkGrab.c @@ -240,8 +240,8 @@ Tk_GrabObjCmd( } return Tk_Grab(interp, tkwin, 0); } else if (arg[0] == '-' && len > 1) { - if (Tcl_GetIndexFromObjStruct(interp, objv[1], flagStrings, - sizeof(char *), "option", 0, &index) != TCL_OK) { + if (Tcl_GetIndexFromObj(interp, objv[1], flagStrings, "option", 0, + &index) != TCL_OK) { return TCL_ERROR; } @@ -262,8 +262,8 @@ Tk_GrabObjCmd( * option it is. */ - if (Tcl_GetIndexFromObjStruct(interp, objv[1], optionStrings, - sizeof(char *), "option", 0, &index) != TCL_OK) { + if (Tcl_GetIndexFromObj(interp, objv[1], optionStrings, "option", 0, + &index) != TCL_OK) { return TCL_ERROR; } @@ -333,8 +333,8 @@ Tk_GrabObjCmd( * consistant with the rest of Tcl. */ - if (Tcl_GetIndexFromObjStruct(interp, objv[2], flagStrings, - sizeof(char *), "option", 0, &index) != TCL_OK) { + if (Tcl_GetIndexFromObj(interp, objv[2], flagStrings, "option", + 0, &index) != TCL_OK) { return TCL_ERROR; } tkwin = Tk_NameToWindow(interp, Tcl_GetString(objv[3]), |