Remove cuix from trunk.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4560 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2007-06-17 14:40:13 +00:00 committed by exg
commit b67f641ac1
13 changed files with 0 additions and 735 deletions

View file

@ -23,9 +23,6 @@
#include "term.h"
#include "mainwindows.h"
#ifdef HAVE_CUIX
#include "cuix.h"
#endif
#include "term-curses.h"
@ -352,26 +349,14 @@ void term_refresh_thaw(void)
void term_refresh(TERM_WINDOW *window)
{
#ifdef HAVE_CUIX
if (!cuix_active) {
#endif
if (window != NULL)
wnoutrefresh(window->win);
if (freeze_refresh == 0) {
move(curs_y, curs_x);
wnoutrefresh(stdscr);
#ifdef HAVE_CUIX
cuix_refresh ();
#endif
doupdate();
}
#ifdef HAVE_CUIX
} else {
update_panels ();
doupdate ();
}
#endif
}
void term_stop(void)