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 | |
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')
-rw-r--r-- | doc/BindTable.3 | 2 | ||||
-rw-r--r-- | doc/CanvPsY.3 | 4 | ||||
-rw-r--r-- | doc/ConfigWidg.3 | 4 | ||||
-rw-r--r-- | doc/GetScroll.3 | 2 | ||||
-rw-r--r-- | doc/SetClassProcs.3 | 4 | ||||
-rw-r--r-- | doc/SetOptions.3 | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/doc/BindTable.3 b/doc/BindTable.3 index af2c8c5..1d3a85b 100644 --- a/doc/BindTable.3 +++ b/doc/BindTable.3 @@ -55,7 +55,7 @@ X event to match against bindings in \fIbindingTable\fR. .AP Tk_Window tkwin in Identifier for any window on the display where the event occurred. Used to find display-related information such as key maps. -.AP Tcl_Size numObjects in +.AP int numObjects in Number of object identifiers pointed to by \fIobjectPtr\fR. .AP "void **" objectPtr in Points to an array of object identifiers: bindings will be considered diff --git a/doc/CanvPsY.3 b/doc/CanvPsY.3 index 3678085..1e4e320 100644 --- a/doc/CanvPsY.3 +++ b/doc/CanvPsY.3 @@ -30,7 +30,7 @@ int int \fBTk_CanvasPsStipple\fR(\fIinterp, canvas, bitmap\fR) .SH ARGUMENTS -.AS Tcl_Size "numPoints" +.AS int "numPoints" .AP Tk_Canvas canvas in A token that identifies a canvas widget for which Postscript is being generated. @@ -58,7 +58,7 @@ Pointer to an array of coordinates for one or more points specified in canvas coordinates. The order of values in \fIcoordPtr\fR is x1, y1, x2, y2, x3, y3, and so on. -.AP Tcl_Size numPoints in +.AP int numPoints in Number of points at \fIcoordPtr\fR. .BE .SH DESCRIPTION diff --git a/doc/ConfigWidg.3 b/doc/ConfigWidg.3 index 2fa81df..58712db 100644 --- a/doc/ConfigWidg.3 +++ b/doc/ConfigWidg.3 @@ -545,13 +545,13 @@ typedef int \fBTk_OptionParseProc\fR( Tk_Window \fItkwin\fR, char *\fIvalue\fR, char *\fIwidgRec\fR, - Tcl_Size \fIoffset\fR); + int \fIoffset\fR); typedef const char *\fBTk_OptionPrintProc\fR( void *\fIclientData\fR, Tk_Window \fItkwin\fR, char *\fIwidgRec\fR, - Tcl_Size \fIoffset\fR, + int \fIoffset\fR, Tcl_FreeProc **\fIfreeProcPtr\fR); .CE The Tk_CustomOption structure contains three fields, which are pointers diff --git a/doc/GetScroll.3 b/doc/GetScroll.3 index dc929b7..91a2585 100644 --- a/doc/GetScroll.3 +++ b/doc/GetScroll.3 @@ -23,7 +23,7 @@ int .AS "Tcl_Interp" *fractionPtr .AP Tcl_Interp *interp in Interpreter to use for error reporting. -.AP Tcl_Size objc in +.AP int objc in Number of Tcl_Obj's in \fIobjv\fR array. .AP "Tcl_Obj *const *" objv in Argument objects. These represent the entire widget command, of 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 diff --git a/doc/SetOptions.3 b/doc/SetOptions.3 index bdf502f..60730fe 100644 --- a/doc/SetOptions.3 +++ b/doc/SetOptions.3 @@ -58,7 +58,7 @@ For options such as \fBTK_OPTION_COLOR\fR, this argument indicates the window in which the option will be used. If \fIoptionTable\fR uses no window-dependent options, then a NULL value may be supplied for this argument. -.AP Tcl_Size objc in +.AP int objc in Number of values in \fIobjv\fR. .AP Tcl_Obj "*const *objv" in Command-line arguments for setting configuring options. |