move more things in the lib-ui.
[apps/madmutt.git] / buffy.c
diff --git a/buffy.c b/buffy.c
index 9f8b9f6..5befe84 100644 (file)
--- a/buffy.c
+++ b/buffy.c
 # include "config.h"
 #endif
 
+#include <string.h>
+#include <sys/stat.h>
+#include <dirent.h>
+#include <utime.h>
+#include <ctype.h>
+#include <unistd.h>
+#include <stdio.h>
+
 #include <lib-lib/mem.h>
 #include <lib-lib/buffer.h>
 #include <lib-lib/macros.h>
 
+#include <lib-ui/curses.h>
+#include <lib-ui/sidebar.h>
+
 #include <imap/imap.h>
 
 #include "mutt.h"
 #include "buffy.h"
 #include "mx.h"
 #include "mh.h"
-#include "sidebar.h"
-
-#include "mutt_curses.h"
-
-#include <string.h>
-#include <sys/stat.h>
-#include <dirent.h>
-#include <utime.h>
-#include <ctype.h>
-#include <unistd.h>
-
-#include <stdio.h>
 
 static time_t BuffyTime = 0;    /* last time we started checking for mail */
 
@@ -171,7 +170,7 @@ static void buffy_free (BUFFY** p) {
 }
 
 int buffy_lookup (const char* path) {
-  unsigned int i = 0;
+  int i = 0;
   if (list_empty(Incoming) || !path || !*path)
     return (-1);
   for (i = 0; i < Incoming->length; i++) {
@@ -268,7 +267,7 @@ int buffy_check (int force)
   struct stat contex_sb;
   time_t now, last1;
   CONTEXT *ctx;
-  unsigned int i = 0;
+  int i = 0;
   int local = 0, count = 0;
   time_t last2;
 
@@ -491,7 +490,7 @@ int buffy_list (void)
   int pos;
   int first;
   int have_unnotified = BuffyNotify;
-  unsigned int i = 0;
+  int i = 0;
 
   pos = 0;
   first = 1;
@@ -555,7 +554,7 @@ int buffy_notify (void)
  */
 void buffy_next (char *s, size_t slen)
 {
-  unsigned int l = 0;
+  int l = 0;
   int c = 0, i = 0;
 
   if (list_empty(Incoming))