diff options
author | paul <paul@FreeBSD.org> | 1995-02-01 04:06:37 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1995-02-01 04:06:37 +0000 |
commit | 0305d2ddc1bf66ecafae556f714242e7c8a04664 (patch) | |
tree | 576ca2890714ba0aff9ce46fa51c6d9c6eaaeba4 /lib/libforms/examples/example.c | |
parent | 0f25422ca89f5fe648e16dedf4c0e6cb062c6c61 (diff) | |
download | FreeBSD-src-0305d2ddc1bf66ecafae556f714242e7c8a04664.zip FreeBSD-src-0305d2ddc1bf66ecafae556f714242e7c8a04664.tar.gz |
Implemented height field for text fields so they can now be more than
one line long.
Fixed a bug in the input field with cursor positioning at the end of
the field.
Make the print_status function available to apps so they can print
status messages.
Updated the example for the new fib parser.
Diffstat (limited to 'lib/libforms/examples/example.c')
-rw-r--r-- | lib/libforms/examples/example.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libforms/examples/example.c b/lib/libforms/examples/example.c index 120dc20..120fdb1 100644 --- a/lib/libforms/examples/example.c +++ b/lib/libforms/examples/example.c @@ -49,6 +49,7 @@ main() } keypad(example.window, TRUE); + print_status("This is the status line"); while (!(res = update_form(&example))); wclear(example.window); |