diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-03-23 06:46:42 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-04-16 18:21:16 -0400 |
commit | 149159df368aaa50db9e3e02f725d147ff557dbd (patch) | |
tree | bdaff74b26095d6b094d8bed348145bc37f67790 /man/XtConvert.man | |
parent | e5a1e228e7ab7332d46db9278fa7af85ae889e70 (diff) |
updated manual pages' C prototypes to agree with the header-files.
This takes into account the _CONST_X_STRING feature, distinguishing
between String and char* and const char*, but also in
several cases, such as XtSessionGetToken, the manual page was wrong.
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Conflicts:
man/XtAppErrorMsg.man
Diffstat (limited to 'man/XtConvert.man')
-rw-r--r-- | man/XtConvert.man | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/man/XtConvert.man b/man/XtConvert.man index 785b6e0..945ffaf 100644 --- a/man/XtConvert.man +++ b/man/XtConvert.man @@ -39,8 +39,9 @@ XtConvert, XtDirectConvert \- invoke resource converters .SH SYNTAX .HP -void XtConvert(Widget \fIw\fP, String \fIfrom_type\fP, XrmValuePtr \fIfrom\fP, -String \fIto_type\fP, XrmValuePtr \fIto_return\fP); +void XtConvert(Widget \fIw\fP, +const char *\fIfrom_type\fP, XrmValuePtr \fIfrom\fP, +const char *\fIto_type\fP, XrmValuePtr \fIto_return\fP); .HP void XtDirectConvert(XtConverter \fIconverter\fP, XrmValuePtr \fIargs\fP, Cardinal \fInum_args\fP, XrmValuePtr \fIfrom\fP, XrmValuePtr \fIto_return\fP); |