summaryrefslogtreecommitdiff
path: root/src/fe-text/mainwindows.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-06-01 21:49:07 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-06-01 21:49:07 +0000
commit05777636a78af7214b33027cdfa6f08b045e6fe7 (patch)
tree447188485ac78470d0270639a10a155fc5e4af94 /src/fe-text/mainwindows.h
parent6f5c1117debce23e12fdba370f0356bebf61d355 (diff)
downloadirssi-05777636a78af7214b33027cdfa6f08b045e6fe7.zip
Replaced all direct curses calls with screen_xx() wrappers. This should
enable us to optionally use termcap directly. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1535 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/mainwindows.h')
-rw-r--r--src/fe-text/mainwindows.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/fe-text/mainwindows.h b/src/fe-text/mainwindows.h
index 491449c6..f58b7d1e 100644
--- a/src/fe-text/mainwindows.h
+++ b/src/fe-text/mainwindows.h
@@ -10,11 +10,8 @@ typedef struct {
WINDOW_REC *active;
GSList *sticky_windows; /* list of windows allowed to show only in this mainwindow */
-#ifdef USE_CURSES_WINDOWS
- WINDOW *curses_win;
-#else
-#error disable-curses-windows is currently broken /* FIXME */
-#endif
+ SCREEN_WINDOW *screen_win;
+
int first_line, last_line, width, height;
int statusbar_lines;
void *statusbar;