diff options
author | nijtmans <nijtmans> | 2010-01-29 16:17:20 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-01-29 16:17:20 (GMT) |
commit | 20dedb76e13ace251494944dae1a8e60d2f6d70a (patch) | |
tree | 26f8bbc7ca7c8759763e62169bfefcb1310134a0 /generic/tclOOInt.h | |
parent | 2a36240c713f132ba78917496b237d879d5e2d58 (diff) | |
download | tcl-20dedb76e13ace251494944dae1a8e60d2f6d70a.zip tcl-20dedb76e13ace251494944dae1a8e60d2f6d70a.tar.gz tcl-20dedb76e13ace251494944dae1a8e60d2f6d70a.tar.bz2 |
- genStubs.tcl: No longer generate a space after "*" and
immediately after a function name, so the
format of function definitions in tcl*Decls.h
matches all other tcl*.h header files.
- Change Tcl_ArgvFuncProc, Tcl_ArgvGenFuncProc
and GetFrameInfoValueProc to be function
definitions, not pointers, for consistency
with all other Tcl function definitions.
Diffstat (limited to 'generic/tclOOInt.h')
-rw-r--r-- | generic/tclOOInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclOOInt.h b/generic/tclOOInt.h index aea18e2..dc52638 100644 --- a/generic/tclOOInt.h +++ b/generic/tclOOInt.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclOOInt.h,v 1.14 2010/01/28 10:25:05 dkf Exp $ + * RCS: @(#) $Id: tclOOInt.h,v 1.15 2010/01/29 16:17:20 nijtmans Exp $ */ #ifndef TCL_OO_INTERNAL_H @@ -96,7 +96,7 @@ typedef struct ProcedureMethod { TclOO_PostCallProc postCallProc; /* Callback to allow for additional cleanup * after the method executes. */ - GetFrameInfoValueProc gfivProc; + GetFrameInfoValueProc *gfivProc; /* Callback to allow for fine tuning of how * the method reports itself. */ } ProcedureMethod; |