diff options
author | nijtmans <nijtmans@noemail.net> | 2010-08-20 23:01:26 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-08-20 23:01:26 (GMT) |
commit | e603c519b17ec324fe612e520e97f8f59a1a73fa (patch) | |
tree | 47cc507f26f15caa73b7b8f5debe939a8b4b7453 /doc | |
parent | 4655a730e5804e0cbdabe8fd76abb1bf9aba9bba (diff) | |
download | tcl-e603c519b17ec324fe612e520e97f8f59a1a73fa.zip tcl-e603c519b17ec324fe612e520e97f8f59a1a73fa.tar.gz tcl-e603c519b17ec324fe612e520e97f8f59a1a73fa.tar.bz2 |
Fix definition of Tcl_MethodType
FossilOrigin-Name: cc296bd9eaf5259a9bc6ce3ee298b4938c783665
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Method.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/Method.3 b/doc/Method.3 index 948e19e..79e9b9f 100644 --- a/doc/Method.3 +++ b/doc/Method.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Method.3,v 1.4 2009/11/27 14:35:10 dkf Exp $ +'\" RCS: @(#) $Id: Method.3,v 1.5 2010/08/20 23:01:27 nijtmans Exp $ '\" .so man.macros .TH Tcl_Method 3 0.1 TclOO "TclOO Library Functions" @@ -163,12 +163,12 @@ The types of methods are described by a pointer to a Tcl_MethodType structure, which is defined as: .PP .CS -typedef const struct { +typedef struct { int \fIversion\fR; const char *\fIname\fR; - Tcl_MethodCallProc \fIcallProc\fR; - Tcl_MethodDeleteProc \fIdeleteProc\fR; - Tcl_CloneProc \fIcloneProc\fR; + Tcl_MethodCallProc *\fIcallProc\fR; + Tcl_MethodDeleteProc *\fIdeleteProc\fR; + Tcl_CloneProc *\fIcloneProc\fR; } \fBTcl_MethodType\fR; .CE .PP |