diff options
author | ericm <ericm> | 2000-08-03 21:14:29 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-03 21:14:29 (GMT) |
commit | df81a224e1174214893a5a153dbafccc832ad1c3 (patch) | |
tree | 17251d727ff49968ee4e8794da8fbf390ccecdec /generic | |
parent | 028fd3679535d4b97a8f3fa248a61e97249441a5 (diff) | |
download | tk-df81a224e1174214893a5a153dbafccc832ad1c3.zip tk-df81a224e1174214893a5a153dbafccc832ad1c3.tar.gz tk-df81a224e1174214893a5a153dbafccc832ad1c3.tar.bz2 |
* generic/tkInt.h: Removed Tk_AfterCmd function prototype; the
function does not exist (since 7.4p3).
* generic/tk.h: Removed Tk_AfterCmd => Tcl_AfterCmd #define;
nothing in the core uses it, and Tcl_AfterCmd doesn't exist
anymore anyway.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tk.h | 3 | ||||
-rw-r--r-- | generic/tkInt.h | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/generic/tk.h b/generic/tk.h index d833b25..29105e0 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk.h,v 1.45 2000/06/03 08:58:15 hobbs Exp $ + * RCS: @(#) $Id: tk.h,v 1.46 2000/08/03 21:14:30 ericm Exp $ */ #ifndef _TK @@ -1298,7 +1298,6 @@ EXTERN void Tk_CreateOldPhotoImageFormat _ANSI_ARGS_(( /* Additional stuff that has moved to Tcl: */ -#define Tk_AfterCmd Tcl_AfterCmd #define Tk_EventuallyFree Tcl_EventuallyFree #define Tk_FreeProc Tcl_FreeProc #define Tk_Preserve Tcl_Preserve diff --git a/generic/tkInt.h b/generic/tkInt.h index 5e5bd99..8b67693 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.29 2000/08/03 21:02:19 ericm Exp $ + * RCS: $Id: tkInt.h,v 1.30 2000/08/03 21:14:30 ericm Exp $ */ #ifndef _TKINT @@ -887,8 +887,6 @@ extern int tkSendSerial; * to the outside world: */ -EXTERN int Tk_AfterCmd _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int argc, char **argv)); EXTERN int Tk_BellObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); |