summaryrefslogtreecommitdiffstats
path: root/doc/GetSelect.3
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-12-13 10:38:39 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-12-13 10:38:39 (GMT)
commit276c5f4cc8912519eb23f0720ecb614ff59c3c39 (patch)
tree6e43ae1e906095f99151a3e40045231f0d54ff55 /doc/GetSelect.3
parent43b775d29369a1dc3315abb9521b3d697069433b (diff)
parentd6bb3158bccb27b30547d3df16e75948b646b280 (diff)
downloadtk-276c5f4cc8912519eb23f0720ecb614ff59c3c39.zip
tk-276c5f4cc8912519eb23f0720ecb614ff59c3c39.tar.gz
tk-276c5f4cc8912519eb23f0720ecb614ff59c3c39.tar.bz2
(Cherry-pick): Fix Tk_CharBbox/Tk_DrawTextLayout signature (int -> Tcl_Size). Update documentation.
Diffstat (limited to 'doc/GetSelect.3')
-rw-r--r--doc/GetSelect.34
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/GetSelect.3 b/doc/GetSelect.3
index 11e837e..455b142 100644
--- a/doc/GetSelect.3
+++ b/doc/GetSelect.3
@@ -30,7 +30,7 @@ Form in which to retrieve selection.
.AP Tk_GetSelProc *proc in
Procedure to invoke to process pieces of the selection as they
are retrieved.
-.AP ClientData clientData in
+.AP void *clientData in
Arbitrary one-word value to pass to \fIproc\fR.
.BE
.SH DESCRIPTION
@@ -44,7 +44,7 @@ should have arguments and result that match the type
.PP
.CS
typedef int \fBTk_GetSelProc\fR(
- ClientData \fIclientData\fR,
+ void *\fIclientData\fR,
Tcl_Interp *\fIinterp\fR,
char *\fIportion\fR);
.CE