mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-24 15:55:14 +00:00
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:
4
curses.h
4
curses.h
@@ -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 ));
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user