]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/resizeterm.c
ncurses 6.5 - patch 20240525
[ncurses.git] / ncurses / base / resizeterm.c
index 225f55225d942d7da418e3330c2d9af55f93f9bd..1a2ddb365a58a19b09b1cb74415e30aa3c3cfe50 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright 2020,2021 Thomas E. Dickey                                     *
+ * Copyright 2020-2021,2024 Thomas E. Dickey                                *
  * Copyright 1998-2015,2016 Free Software Foundation, Inc.                  *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
@@ -46,7 +46,7 @@
 #define CUR SP_TERMTYPE
 #endif
 
-MODULE_ID("$Id: resizeterm.c,v 1.51 2021/09/04 10:54:35 tom Exp $")
+MODULE_ID("$Id: resizeterm.c,v 1.53 2024/04/20 21:54:14 tom Exp $")
 
 /*
  * If we're trying to be reentrant, do not want any local statics.
@@ -293,7 +293,7 @@ decrease_size(NCURSES_SP_DCLx int ToLines, int ToCols, int stolen EXTRA_DCLS)
        for (each_window(SP_PARM, wp)) {
            WINDOW *win = &(wp->win);
 
-           if (!(win->_flags & _ISPAD)) {
+           if (!IS_PAD(win)) {
                if (child_depth(win) == depth) {
                    found = TRUE;
                    if (adjust_window(win, ToLines, ToCols,
@@ -328,7 +328,7 @@ increase_size(NCURSES_SP_DCLx int ToLines, int ToCols, int stolen EXTRA_DCLS)
        for (each_window(SP_PARM, wp)) {
            WINDOW *win = &(wp->win);
 
-           if (!(win->_flags & _ISPAD)) {
+           if (!IS_PAD(win)) {
                if (parent_depth(win) == depth) {
                    found = TRUE;
                    if (adjust_window(win, ToLines, ToCols,
@@ -409,8 +409,8 @@ NCURSES_SP_NAME(resize_term) (NCURSES_SP_DCLx int ToLines, int ToCols)
 #ifdef USE_TERM_DRIVER
            CallDriver_2(SP_PARM, td_setsize, ToLines, ToCols);
 #else
-           lines = (NCURSES_SIZE_T) ToLines;
-           columns = (NCURSES_SIZE_T) ToCols;
+           lines = (NCURSES_INT2) ToLines;
+           columns = (NCURSES_INT2) ToCols;
 #endif
 
            SP_PARM->_lines_avail = (NCURSES_SIZE_T) (ToLines - was_stolen);