diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-26 04:01:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-26 04:01:29 +0000 |
commit | cd15e61d557c4704743905eae7b88ae927cf0394 (patch) | |
tree | 24ae93cd3ef24948fe6cc4049d94433f3ed28919 /lib/libform/form_win.3 | |
parent | 65d9e3fdab3ed1511a98387720e59db078fc3d46 (diff) |
libform from ncurses 4.1. Post 4.1 patches to be applied in a separate commit.
Diffstat (limited to 'lib/libform/form_win.3')
-rw-r--r-- | lib/libform/form_win.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libform/form_win.3 b/lib/libform/form_win.3 index 08b64547427..a43f9c08739 100644 --- a/lib/libform/form_win.3 +++ b/lib/libform/form_win.3 @@ -7,13 +7,13 @@ .br int set_form_win(FORM *form, WINDOW *win); .br -WINDOW *form_win(FORM *form); +WINDOW *form_win(const FORM *form); .br int set_form_sub(FORM *form, WINDOW *sub); .br -WINDOW *form_sub(FORM *form); +WINDOW *form_sub(const FORM *form); .br -int scale_form(FORM *form, int *rows, int *columns); +int scale_form(const FORM *form, int *rows, int *columns); .br .SH DESCRIPTION Every form has an associated pair of \fBcurses\fR windows. The form window @@ -23,7 +23,7 @@ displays the items of the form that are currently available for selection. The first four functions get and set those windows. It is not necessary to set either window; by default, the driver code uses \fBstdscr\fR for both. -In the \fBset_\fR functions, window argument of \fBNULL\fR is treated as tbough +In the \fBset_\fR functions, window argument of \fBNULL\fR is treated as though it were \fBstsdcr\fR. A form argument of \fBNULL\fR is treated as a request to change the system default form window or subwindow. |