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/XtAppAddConverter.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/XtAppAddConverter.man')
-rw-r--r-- | man/XtAppAddConverter.man | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/man/XtAppAddConverter.man b/man/XtAppAddConverter.man index d3264ac..013a189 100644 --- a/man/XtAppAddConverter.man +++ b/man/XtAppAddConverter.man @@ -39,13 +39,13 @@ XtAppAddConverter, XtAddConverter \- register resource converter .SH SYNTAX .HP -void XtAppAddConverter(XtAppContext \fIapp_context\fP, String \fIfrom_type\fP, -String \fIto_type\fP, XtConverter \fIconverter\fP, XtConvertArgList -\fIconvert_args\fP, Cardinal \fInum_args\fP); +void XtAppAddConverter(XtAppContext \fIapp_context\fP, const char *\fIfrom_type\fP, +const char *\fIto_type\fP, XtConverter \fIconverter\fP, +XtConvertArgList \fIconvert_args\fP, Cardinal \fInum_args\fP); .HP -void XtAddConverter(String \fIfrom_type\fP, String \fIto_type\fP, XtConverter -\fIconverter\fP, XtConvertArgList \fIconvert_args\fP, Cardinal -\fInum_args\fP); +void XtAddConverter(const char *\fIfrom_type\fP, const char *\fIto_type\fP, +XtConverter \fIconverter\fP, XtConvertArgList \fIconvert_args\fP, +Cardinal \fInum_args\fP); .SH ARGUMENTS .IP \fIapp_context\fP 1i Specifies the application context. |