diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-27 12:36:56 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-27 12:36:56 (GMT) |
commit | b83ed80002d8d8eb676c9f7c81a794e8216e3498 (patch) | |
tree | c60953cf292d7784e416ed6fd0555d89d2e6f2c3 /generic/tkEntry.c | |
parent | fb81bb7d6255f5040661d59559edf32bc997bd6d (diff) | |
download | tk-b83ed80002d8d8eb676c9f7c81a794e8216e3498.zip tk-b83ed80002d8d8eb676c9f7c81a794e8216e3498.tar.gz tk-b83ed80002d8d8eb676c9f7c81a794e8216e3498.tar.bz2 |
Eliminate all Tcl_GetIndexFromObj calls, which is only a thin wrapper around Tcl_GetIndexFromObjStruct.
Diffstat (limited to 'generic/tkEntry.c')
-rw-r--r-- | generic/tkEntry.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/generic/tkEntry.c b/generic/tkEntry.c index eb94cbd..7ee6ad2 100644 --- a/generic/tkEntry.c +++ b/generic/tkEntry.c @@ -602,8 +602,8 @@ EntryWidgetObjCmd( * valid command names. */ - result = Tcl_GetIndexFromObj(interp, objv[1], entryCmdNames, "option", 0, - &cmdIndex); + result = Tcl_GetIndexFromObjStruct(interp, objv[1], entryCmdNames, + sizeof(char *), "option", 0, &cmdIndex); if (result != TCL_OK) { return result; } @@ -782,8 +782,8 @@ EntryWidgetObjCmd( * "selCmdNames" defined above. */ - result = Tcl_GetIndexFromObj(interp, objv[2], selCmdNames, - "selection option", 0, &selIndex); + result = Tcl_GetIndexFromObjStruct(interp, objv[2], selCmdNames, + sizeof(char *), "selection option", 0, &selIndex); if (result != TCL_OK) { goto error; } @@ -3656,8 +3656,8 @@ SpinboxWidgetObjCmd( * valid command names. */ - result = Tcl_GetIndexFromObj(interp, objv[1], sbCmdNames, - "option", 0, &cmdIndex); + result = Tcl_GetIndexFromObjStruct(interp, objv[1], sbCmdNames, + sizeof(char *), "option", 0, &cmdIndex); if (result != TCL_OK) { return result; } @@ -3817,8 +3817,8 @@ SpinboxWidgetObjCmd( Tcl_WrongNumArgs(interp, 2, objv, "elemName"); goto error; } - result = Tcl_GetIndexFromObj(interp, objv[2], - selElementNames, "element", 0, &cmdIndex); + result = Tcl_GetIndexFromObjStruct(interp, objv[2], selElementNames, + sizeof(char *), "element", 0, &cmdIndex); if (result != TCL_OK) { goto error; } @@ -3873,8 +3873,8 @@ SpinboxWidgetObjCmd( * "sbSelCmdNames" defined above. */ - result = Tcl_GetIndexFromObj(interp, objv[2], sbSelCmdNames, - "selection option", 0, &selIndex); + result = Tcl_GetIndexFromObjStruct(interp, objv[2], sbSelCmdNames, + sizeof(char *), "selection option", 0, &selIndex); if (result != TCL_OK) { goto error; } @@ -4003,8 +4003,8 @@ SpinboxWidgetObjCmd( } else { int lastElement = sbPtr->selElement; - result = Tcl_GetIndexFromObj(interp, objv[3], selElementNames, - "selection element", 0, &(sbPtr->selElement)); + result = Tcl_GetIndexFromObjStruct(interp, objv[3], selElementNames, + sizeof(char *), "selection element", 0, &(sbPtr->selElement)); if (result != TCL_OK) { goto error; } |