diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-03-23 11:51:55 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-04-16 18:23:27 -0400 |
commit | 6b500c797a461c6da3baf6a1be208b232bf84366 (patch) | |
tree | 11f41fc065efa39f18fd768951c128e633e45a9d /man | |
parent | 101090b0a60c8bc9aa38c8fd42b35119739bc53f (diff) |
fix minor regression in prototype updates
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'man')
-rw-r--r-- | man/XtAppErrorMsg.man | 4 | ||||
-rw-r--r-- | man/XtGetSelectionValue.man | 2 | ||||
-rw-r--r-- | man/XtGetSelectionValueIncremental.man | 2 | ||||
-rw-r--r-- | man/XtGrabKey.man | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/man/XtAppErrorMsg.man b/man/XtAppErrorMsg.man index bc5be59..96360e2 100644 --- a/man/XtAppErrorMsg.man +++ b/man/XtAppErrorMsg.man @@ -40,14 +40,14 @@ XtAppErrorMsg, XtAppSetErrorMsgHandler, XtAppSetWarningMsgHandler, XtAppWarningMsg \- high-level error handlers .SH SYNTAX .HP -XtErrorMsgHandler XtAppErrorMsg(XtAppContext \fIapp_context\fP, const char *\fIname\fP, +void XtAppErrorMsg(XtAppContext \fIapp_context\fP, const char *\fIname\fP, const char *\fItype\fP, const char *\fIclass\fP, const char *\fIdefaultMsg\fP, String *\fIparams\fP, Cardinal *\fInum_params\fP); .HP XtErrorMsgHandler XtAppSetErrorMsgHandler(XtAppContext \fIapp_context\fP, XtErrorMsgHandler \fImsg_handler\fP); .HP -void XtAppSetWarningMsgHandler(XtAppContext \fIapp_context\fP, +XtErrorMsgHandler XtAppSetWarningMsgHandler(XtAppContext \fIapp_context\fP, XtErrorMsgHandler \fImsg_handler\fP); .HP void XtAppWarningMsg(XtAppContext \fIapp_context\fP, const char *\fIname\fP, diff --git a/man/XtGetSelectionValue.man b/man/XtGetSelectionValue.man index 978df8d..2257342 100644 --- a/man/XtGetSelectionValue.man +++ b/man/XtGetSelectionValue.man @@ -43,7 +43,7 @@ void XtGetSelectionValue(Widget \fIw\fP, Atom \fIselection\fP, Atom \fItarget\fP, XtSelectionCallbackProc \fIcallback\fP, -XtPointer *\fIclient_data\fP, Time \fItime\fP); +XtPointer \fIclient_data\fP, Time \fItime\fP); .HP void XtGetSelectionValues(Widget \fIw\fP, Atom \fIselection\fP, diff --git a/man/XtGetSelectionValueIncremental.man b/man/XtGetSelectionValueIncremental.man index b533f99..be346b8 100644 --- a/man/XtGetSelectionValueIncremental.man +++ b/man/XtGetSelectionValueIncremental.man @@ -44,7 +44,7 @@ void XtGetSelectionValueIncremental(Widget \fIw\fP, Atom \fIselection\fP, Atom .HP void XtGetSelectionValuesIncremental(Widget \fIw\fP, Atom \fIselection\fP, Atom *\fItargets\fP, int \fIcount\fP, XtSelectionCallbackProc \fIcallback\fP, -XtPointer \fIclient_data\fP, Time \fItime\fP); +XtPointer *\fIclient_data\fP, Time \fItime\fP); .SH ARGUMENTS .IP \fIcallback\fP 1i Specifies the callback procedure that is to be called when the selection value has been obtained. diff --git a/man/XtGrabKey.man b/man/XtGrabKey.man index 368bb68..2498f69 100644 --- a/man/XtGrabKey.man +++ b/man/XtGrabKey.man @@ -56,7 +56,7 @@ void XtGrabButton(Widget \fIwidget\fP, int \fIbutton\fP, Modifiers int \fIpointer_mode\fP, int \fIkeyboard_mode\fP, Window \fIconfine_to\fP, Cursor \fIcursor\fP); .HP -void XtUngrabButton(Widget \fIwidget\fP, KeyCode \fIbutton\fP, Modifiers +void XtUngrabButton(Widget \fIwidget\fP, unsigned \fIbutton\fP, Modifiers \fImodifiers\fP); .HP int XtGrabPointer(Widget \fIwidget\fP, Boolean \fIowner_events\fP, unsigned |