diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-12-13 10:51:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-12-13 10:51:27 (GMT) |
commit | f319a44dc9c325f81539512a339220e925652214 (patch) | |
tree | 5aef4703f98f5847dd8c5754dd02171ea87e9df6 /doc/SetClassProcs.3 | |
parent | 276c5f4cc8912519eb23f0720ecb614ff59c3c39 (diff) | |
download | tk-f319a44dc9c325f81539512a339220e925652214.zip tk-f319a44dc9c325f81539512a339220e925652214.tar.gz tk-f319a44dc9c325f81539512a339220e925652214.tar.bz2 |
Don't use Tcl_Size in documentation (yet), since Tk 8.7 will mainly be used with Tcl 8.7
Diffstat (limited to 'doc/SetClassProcs.3')
-rw-r--r-- | doc/SetClassProcs.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/SetClassProcs.3 b/doc/SetClassProcs.3 index d3666cd..d8f89a4 100644 --- a/doc/SetClassProcs.3 +++ b/doc/SetClassProcs.3 @@ -50,7 +50,7 @@ accordingly. \fIworldChangedProc\fR should have arguments and results that match the type \fBTk_ClassWorldChangedProc\fR: .CS typedef void \fBTk_ClassWorldChangedProc\fR( - ClientData \fIinstanceData\fR); + void *\fIinstanceData\fR); .CE The \fIinstanceData\fR parameter passed to the \fIworldChangedProc\fR will be identical to the \fIinstanceData\fR parameter passed to @@ -63,7 +63,7 @@ arguments and results that match the type \fBTk_ClassCreateProc\fR: typedef Window \fBTk_ClassCreateProc\fR( Tk_Window \fItkwin\fR, Window \fIparent\fR, - ClientData \fIinstanceData\fR); + void *\fIinstanceData\fR); .CE The \fItkwin\fR and \fIinstanceData\fR parameters will be identical to the \fItkwin\fR and \fIinstanceData\fR parameters passed to |