[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Invisible form fields w/ ncurses-5.7 on Fedora
From: |
Grant Edwards |
Subject: |
Re: Invisible form fields w/ ncurses-5.7 on Fedora |
Date: |
Fri, 12 Aug 2011 22:45:19 +0000 (UTC) |
User-agent: |
slrn/pre0.9.9-102 (Linux) |
On 2011-08-12, Grant Edwards <address@hidden> wrote:
> I'm sure it's something I'm doing wrong in my application, but I can't
> figure out what it might be.
Doh! After beating my head against the wall for a day and a half, it
only takes 5 miutes after posting to stumble across the problem.
There was a type in my code:
w = newwin(rows,cols,y,x); assert(w);
s = derwin(w,rows-2,cols-2,1,1); assert(s);
set_form_win(f,w);
set_form_win(f,s);
That second set_form_win() call should have been set_form_sub().
I've no clue why my broken code worked for so long on so many systems
and just recently failed only on Fedora systems.
--
Grant Edwards grant.b.edwards Yow! Could I have a drug
at overdose?
gmail.com
- Invisible form fields w/ ncurses-5.7 on Fedora, Grant Edwards, 2011/08/12
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Thomas Dickey, 2011/08/12
- Re: Invisible form fields w/ ncurses-5.7 on Fedora,
Grant Edwards <=
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Thomas Dickey, 2011/08/12
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Grant Edwards, 2011/08/12
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Thomas Dickey, 2011/08/12
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Thomas Dickey, 2011/08/13
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Grant Edwards, 2011/08/16
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Grant Edwards, 2011/08/16
- Re: Invisible form fields w/ ncurses-5.7 on Fedora, Grant Edwards, 2011/08/17