diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-05-23 21:40:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-05-23 21:40:26 (GMT) |
commit | 49fdab991681fdbb983c788d6ed8342ffb817268 (patch) | |
tree | 9c80dfaf5db6927ba9277b66647375eafec94f2b /generic/tkSelect.h | |
parent | 4ff5c4550c95c7826e799567115b825bbc402d81 (diff) | |
parent | f6d482f314eb164a9779a263224b88b85ff275cb (diff) | |
download | tk-49fdab991681fdbb983c788d6ed8342ffb817268.zip tk-49fdab991681fdbb983c788d6ed8342ffb817268.tar.gz tk-49fdab991681fdbb983c788d6ed8342ffb817268.tar.bz2 |
Merge trunk. Fix C++ builds, also for TCL_UTF_MAX=4 and TCL_UTF_MAX=6
Diffstat (limited to 'generic/tkSelect.h')
-rw-r--r-- | generic/tkSelect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkSelect.h b/generic/tkSelect.h index 405cbea..c2d153b 100644 --- a/generic/tkSelect.h +++ b/generic/tkSelect.h @@ -107,7 +107,7 @@ typedef struct TkSelRetrievalInfo { typedef struct TkClipboardBuffer { char *buffer; /* Null terminated data buffer. */ - size_t length; /* Length of string in buffer. */ + TkSizeT length; /* Length of string in buffer. */ struct TkClipboardBuffer *nextPtr; /* Next in list of buffers. NULL means end of * list . */ |