summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.h
diff options
context:
space:
mode:
authorericm <ericm>2000-08-03 21:02:19 (GMT)
committerericm <ericm>2000-08-03 21:02:19 (GMT)
commit028fd3679535d4b97a8f3fa248a61e97249441a5 (patch)
tree5af873be4a2bf0f9e0eef21003893de3571d64bf /generic/tkInt.h
parent0cdb0677540aa8995226f52ec82b9037920b6d29 (diff)
downloadtk-028fd3679535d4b97a8f3fa248a61e97249441a5.zip
tk-028fd3679535d4b97a8f3fa248a61e97249441a5.tar.gz
tk-028fd3679535d4b97a8f3fa248a61e97249441a5.tar.bz2
* generic/tkInt.h: Replace Tk_BindCmd prototype with
Tk_BindObjCmd prototype. * generic/tkWindow.c: Updated "bind" command entry to use Tcl_Obj'ified command. * generic/tkCmds.c (Tk_BindObjCmd): Tcl_Obj'ified [bind] command.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r--generic/tkInt.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h
index c8be3f6..5e5bd99 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.28 2000/08/03 20:36:15 ericm Exp $
+ * RCS: $Id: tkInt.h,v 1.29 2000/08/03 21:02:19 ericm Exp $
*/
#ifndef _TKINT
@@ -892,8 +892,9 @@ EXTERN int Tk_AfterCmd _ANSI_ARGS_((ClientData clientData,
EXTERN int Tk_BellObjCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int objc,
Tcl_Obj *CONST objv[]));
-EXTERN int Tk_BindCmd _ANSI_ARGS_((ClientData clientData,
- Tcl_Interp *interp, int argc, char **argv));
+EXTERN int Tk_BindObjCmd _ANSI_ARGS_((ClientData clientData,
+ Tcl_Interp *interp, int objc,
+ Tcl_Obj *CONST objv[]));
EXTERN int Tk_BindtagsObjCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int objc,
Tcl_Obj *CONST objv[]));