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/XtResolvePathname.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/XtResolvePathname.man')
-rw-r--r-- | man/XtResolvePathname.man | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/man/XtResolvePathname.man b/man/XtResolvePathname.man index 402be77..cb96393 100644 --- a/man/XtResolvePathname.man +++ b/man/XtResolvePathname.man @@ -38,10 +38,13 @@ XtResolvePathname \- search for a file using standard substitution .SH SYNTAX .HP -String XtResolvePathname(Display *\fIdisplay\fP, String \fItype\fP, String -\fIfilename\fP, String \fIsuffix\fP, String \fIpath\fP, Substitution -\fIsubstitutions\fP, Cardinal \fInum_substitutions\fP, XtFilePredicate -\fIpredicate\fP); +char * XtResolvePathname(Display *\fIdisplay\fP, +const char *\fItype\fP, +const char *\fIfilename\fP, +const char *\fIsuffix\fP, +const char *\fIpath\fP, +Substitution \fIsubstitutions\fP, Cardinal \fInum_substitutions\fP, +XtFilePredicate \fIpredicate\fP); .SH ARGUMENTS .IP \fIdisplay\fP 1.2i Specifies the display to use to find the language for language substitutions. |