wresize() implementation is bogus. Well, there's no standard, but it

doesn't match other implementations (ncurses and BSD), so there's no
point (it's the same functionality as resize_window()). To fix this, we
need to rewrite resize_window() to reuse the original structure.
This commit is contained in:
William McBrine
2005-12-25 19:24:43 +00:00
parent 17023a4dd3
commit 7b5dc11caa
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@
***************************************************************************
*/
/*
$Id: curses.h,v 1.57 2005/12/25 04:24:41 wmcbrine Exp $
$Id: curses.h,v 1.58 2005/12/25 19:24:43 wmcbrine Exp $
*/
/*
*----------------------------------------------------------------------
@@ -1825,7 +1825,7 @@ int PDC_CDECL wscanw Args(( WINDOW*, char*,... ));
#endif
int PDC_CDECL wredrawln Args(( WINDOW*, int ,int ));
int PDC_CDECL wrefresh Args(( WINDOW* ));
int PDC_CDECL wresize Args((WINDOW **win, int lins, int cols));
/* int PDC_CDECL wresize Args((WINDOW **win, int lins, int cols)); */
int PDC_CDECL wscrl Args(( WINDOW*, int ));
int PDC_CDECL wsetscrreg Args(( WINDOW*, int, int ));
int PDC_CDECL wtimeout Args(( WINDOW *, int ));

View File

@@ -25,7 +25,7 @@ BUGS FIXED:
NEW FEATURES:
- Implemented timeout() and wtimeout() Bug 695827
- Implemented getattrs(), has_key(), wresize(), mvwgetnstr()
- Implemented getattrs(), has_key(), mvwgetnstr()
Alexandr Zamaraev (Feature 1004399)
- A window's default colors are used as curses default colors when
environment variable: PDC_ORIGINAL_COLORS is set to any value.