diff options
author | ericm <ericm> | 2000-08-03 20:36:15 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-03 20:36:15 (GMT) |
commit | 0cdb0677540aa8995226f52ec82b9037920b6d29 (patch) | |
tree | ff2867076396bc073331bbed420d5ef47e09b88e /generic/tkInt.h | |
parent | 7d67184a277c2923bc3f951b256ad643113c6a8e (diff) | |
download | tk-0cdb0677540aa8995226f52ec82b9037920b6d29.zip tk-0cdb0677540aa8995226f52ec82b9037920b6d29.tar.gz tk-0cdb0677540aa8995226f52ec82b9037920b6d29.tar.bz2 |
* tests/bind.test: Tweaked expected error messages for [bindtags]
to comply with updated error messages.
* generic/tkMenu.c (CloneMenu): Replaced calls to Tk_BindtagsCmd
with equivalent calls to Tk_BindtagsObjCmd.
* generic/tkInt.h: Replace Tk_BindtagsCmd prototype with
Tk_BindtagsObjCmd prototype.
* generic/tkWindow.c: Updated "bindtags" command entry to use
Tcl_Obj'ified command.
* generic/tkCmds.c (Tk_BindtagsObjCmd): Tcl_Obj'ified [bindtags]
command.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index d2e7d95..c8be3f6 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.27 2000/08/02 23:08:20 ericm Exp $ + * RCS: $Id: tkInt.h,v 1.28 2000/08/03 20:36:15 ericm Exp $ */ #ifndef _TKINT @@ -894,8 +894,9 @@ EXTERN int Tk_BellObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Obj *CONST objv[])); EXTERN int Tk_BindCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int argc, char **argv)); -EXTERN int Tk_BindtagsCmd _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int argc, char **argv)); +EXTERN int Tk_BindtagsObjCmd _ANSI_ARGS_((ClientData clientData, + Tcl_Interp *interp, int objc, + Tcl_Obj *CONST objv[])); EXTERN int Tk_ButtonObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); |