diff options
author | ericm <ericm> | 2000-08-02 23:08:19 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-02 23:08:19 (GMT) |
commit | 7d67184a277c2923bc3f951b256ad643113c6a8e (patch) | |
tree | 59f48b5c69b01befbf1cab053c896977fd387000 /generic/tkInt.h | |
parent | d27ee63662ac46121aeb974aad912fa29bce12d5 (diff) | |
download | tk-7d67184a277c2923bc3f951b256ad643113c6a8e.zip tk-7d67184a277c2923bc3f951b256ad643113c6a8e.tar.gz tk-7d67184a277c2923bc3f951b256ad643113c6a8e.tar.bz2 |
* generic/tkCmds.c (Tk_TkwaitObjCmd): Tcl_Obj'ified [tkwait] command.
* generic/tkWindow.c: Updated "tkwait" command entry to use
Tcl_Obj'ified command.
* generic/tkInt.h: Replace Tk_TkwaitCmd prototype with
Tk_TkwaitObjCmd prototype.
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 81e4bd1..d2e7d95 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.26 2000/08/02 01:33:33 ericm Exp $ + * RCS: $Id: tkInt.h,v 1.27 2000/08/02 23:08:20 ericm Exp $ */ #ifndef _TKINT @@ -1000,8 +1000,9 @@ EXTERN int Tk_TextCmd _ANSI_ARGS_((ClientData clientData, EXTERN int Tk_TkObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); -EXTERN int Tk_TkwaitCmd _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int argc, char **argv)); +EXTERN int Tk_TkwaitObjCmd _ANSI_ARGS_((ClientData clientData, + Tcl_Interp *interp, int objc, + Tcl_Obj *CONST objv[])); EXTERN int Tk_ToplevelObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); |