diff options
author | nijtmans <nijtmans> | 2010-02-05 10:03:23 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-05 10:03:23 (GMT) |
commit | 3e2c1215a7115e506d67819f0831da51f8aa201a (patch) | |
tree | 91a0d32c754b6aff65afda82a01486cdc41c00d3 /generic/tclOO.decls | |
parent | 280e93549c0502a223353a6814bb3548fcd9a71b (diff) | |
download | tcl-3e2c1215a7115e506d67819f0831da51f8aa201a.zip tcl-3e2c1215a7115e506d67819f0831da51f8aa201a.tar.gz tcl-3e2c1215a7115e506d67819f0831da51f8aa201a.tar.bz2 |
Follow-up to [2010-01-29] commit:
prevent space within stub table function parameters
if the parameter type is a pointer.
Minor formatting, and VOID -> void.
Change signature of TclNRInterpProcCore,
and TclOONewProc(Instance|)MethodEx,
indicating that errorProc is a function pointer
tclVar.c: fixed two gcc warnings
Diffstat (limited to 'generic/tclOO.decls')
-rw-r--r-- | generic/tclOO.decls | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclOO.decls b/generic/tclOO.decls index f06dd6b..0be831a 100644 --- a/generic/tclOO.decls +++ b/generic/tclOO.decls @@ -1,4 +1,4 @@ -# $Id: tclOO.decls,v 1.5 2009/07/19 11:46:53 dkf Exp $ +# $Id: tclOO.decls,v 1.6 2010/02/05 10:03:23 nijtmans Exp $ library tclOO @@ -165,14 +165,14 @@ declare 8 generic { declare 9 generic { Tcl_Method TclOONewProcInstanceMethodEx(Tcl_Interp *interp, Tcl_Object oPtr, TclOO_PreCallProc preCallPtr, - TclOO_PostCallProc postCallPtr, ProcErrorProc errProc, + TclOO_PostCallProc postCallPtr, ProcErrorProc *errProc, ClientData clientData, Tcl_Obj *nameObj, Tcl_Obj *argsObj, Tcl_Obj *bodyObj, int flags, void **internalTokenPtr) } declare 10 generic { Tcl_Method TclOONewProcMethodEx(Tcl_Interp *interp, Tcl_Class clsPtr, TclOO_PreCallProc preCallPtr, TclOO_PostCallProc postCallPtr, - ProcErrorProc errProc, ClientData clientData, Tcl_Obj *nameObj, + ProcErrorProc *errProc, ClientData clientData, Tcl_Obj *nameObj, Tcl_Obj *argsObj, Tcl_Obj *bodyObj, int flags, void **internalTokenPtr) } |