summaryrefslogtreecommitdiffstats
path: root/doc/Method.3
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-08-20 23:01:27 (GMT)
committernijtmans <nijtmans>2010-08-20 23:01:27 (GMT)
commit2353628b42e71598ddcc606a3c51667a6cc4f199 (patch)
tree47cc507f26f15caa73b7b8f5debe939a8b4b7453 /doc/Method.3
parentd7dcac6b8685a1439f738accf3e4b9ef13c80aeb (diff)
downloadtcl-2353628b42e71598ddcc606a3c51667a6cc4f199.zip
tcl-2353628b42e71598ddcc606a3c51667a6cc4f199.tar.gz
tcl-2353628b42e71598ddcc606a3c51667a6cc4f199.tar.bz2
Fix definition of Tcl_MethodType
Diffstat (limited to 'doc/Method.3')
-rw-r--r--doc/Method.310
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