summaryrefslogtreecommitdiffstats
path: root/generic/tclOOInt.h
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-01-29 16:17:20 (GMT)
committernijtmans <nijtmans@noemail.net>2010-01-29 16:17:20 (GMT)
commit69f99f9864e67f7619f3cc1f2ae5278e109fa8e7 (patch)
tree26f8bbc7ca7c8759763e62169bfefcb1310134a0 /generic/tclOOInt.h
parent42f5932ef552927d02161893ffa546dcd991fdb4 (diff)
downloadtcl-69f99f9864e67f7619f3cc1f2ae5278e109fa8e7.zip
tcl-69f99f9864e67f7619f3cc1f2ae5278e109fa8e7.tar.gz
tcl-69f99f9864e67f7619f3cc1f2ae5278e109fa8e7.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. FossilOrigin-Name: 92924901357b4846fa668b6f5122abf37979693a
Diffstat (limited to 'generic/tclOOInt.h')
-rw-r--r--generic/tclOOInt.h4
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;