diff mcabber/src/screen.c @ 935:97e6a6da2b2c

Fix ncurses #include (again)
author Mikael Berthe <mikael@lilotux.net>
date Sat, 08 Jul 2006 15:32:55 +0200
parents ede9260be93d
children 3e592fb33aab
line wrap: on
line diff
--- a/mcabber/src/screen.c	Sat Jul 08 12:47:54 2006 +0200
+++ b/mcabber/src/screen.c	Sat Jul 08 15:32:55 2006 +0200
@@ -30,16 +30,6 @@
 #include <langinfo.h>
 #include <config.h>
 
-#if HAVE_NCURSESW_NCURSES_H
-# include <ncursesw/ncurses.h>
-#elif HAVE_NCURSES_NCURSES_H
-# include <ncurses/ncurses.h>
-#elif HAVE_NCURSES_H
-# include <ncurses.h>
-#else
-# include <curses.h>
-#endif
-
 #include "screen.h"
 #include "utf8.h"
 #include "hbuf.h"
@@ -490,7 +480,7 @@
   return NULL;
 }
 
-bool scr_BuddyBufferExists(const char *jid)
+int scr_BuddyBufferExists(const char *jid)
 {
   return (scr_SearchWindow(jid, FALSE) != NULL);
 }
@@ -1290,7 +1280,7 @@
   scr_ShowWindow(jidto, FALSE);
 }
 
-inline void set_autoaway(bool setaway)
+static inline void set_autoaway(bool setaway)
 {
   static enum imstatus oldstatus;
   static char *oldmsg;
@@ -1321,7 +1311,7 @@
 }
 
 // Check if we should enter/leave automatic away status
-void scr_CheckAutoAway(bool activity)
+void scr_CheckAutoAway(int activity)
 {
   static time_t LastActivity;
   enum imstatus cur_st;