libgnt/libgnt

Fix the deprecation warnings around GntProgressBar
release-2.x.y
2 months ago, Gary Kramlich
3a32f08efbb5
Fix the deprecation warnings around GntProgressBar

Testing Done:
Compiled and verified the warnings were gone.

Reviewed at https://reviews.imfreedom.org/r/3067/
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}