From fcd4a34e5a04ff39f6cea242d0488c185c52c8e8 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Wed, 16 Aug 2006 05:36:59 +0000 Subject: [PATCH] Made curs_set() mode descriptions fit the standard, rather than explicitly characterizing the cursor shape. Suggested indirectly by MH. --- demos/testcurs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/testcurs.c b/demos/testcurs.c index d9b1c40a..68734d2c 100644 --- a/demos/testcurs.c +++ b/demos/testcurs.c @@ -5,7 +5,7 @@ * wrs(5/28/93) -- modified to be consistent (perform identically) with * either PDCurses or under Unix System V, R4 * - * $Id: testcurs.c,v 1.60 2006/08/07 01:34:29 wmcbrine Exp $ + * $Id: testcurs.c,v 1.61 2006/08/16 05:36:59 wmcbrine Exp $ */ #ifdef PDCDEBUG @@ -665,7 +665,7 @@ void outputTest(WINDOW *win) wclear(win); curs_set(2); - mvwaddstr(win, 1, 1, "The cursor should appear as a block"); + mvwaddstr(win, 1, 1, "The cursor should be in high-visibility mode"); Continue(win); wclear(win); @@ -675,7 +675,7 @@ void outputTest(WINDOW *win) wclear(win); curs_set(1); - mvwaddstr(win, 1, 1, "The cursor should be an underline"); + mvwaddstr(win, 1, 1, "The cursor should be normal"); Continue(win); #ifdef A_COLOR