leftover
[apps/madmutt.git] / lib-ui / sidebar.c
index 0ca8ce9..180e0c3 100644 (file)
@@ -173,11 +173,6 @@ sidebar_number_format(char* dest, ssize_t destlen,
   return src;
 }
 
-int sidebar_need_count(void)
-{
-    return ui_layout_sidebar_w() && !m_strisempty(SidebarNumberFormat);
-}
-
 /* print single item
  * returns:
  *      0       item was not printed ('cause of $sidebar_newmail_only)
@@ -278,7 +273,7 @@ int sidebar_draw(void)
     memset(&blank, ' ', sizeof(blank));
 
     wmove(sw, 0, 0);
-    WSETCOLOR(sw, MT_COLOR_STATUS);
+    SETCOLOR(sw, MT_COLOR_STATUS);
     waddnstr(sw, blank, x);
 
     line = 1;
@@ -286,32 +281,32 @@ int sidebar_draw(void)
         BUFFY *tmp = Incoming.arr[i];
 
         if (i == CurBuffy)
-            WSETCOLOR(sw, MT_COLOR_INDICATOR);
+            SETCOLOR(sw, MT_COLOR_INDICATOR);
         else if (tmp->new > 0)
-            WSETCOLOR(sw, MT_COLOR_NEW);
+            SETCOLOR(sw, MT_COLOR_NEW);
         else if (tmp->msg_flagged > 0)
-            WSETCOLOR(sw, MT_COLOR_FLAGGED);
+            SETCOLOR(sw, MT_COLOR_FLAGGED);
         else
-            WSETCOLOR(sw, MT_COLOR_NORMAL);
+            SETCOLOR(sw, MT_COLOR_NORMAL);
 
         if (make_sidebar_entry(sw, tmp->path, i, x - 1)) {
-            WSETCOLOR(sw, MT_COLOR_SIDEBAR);
+            SETCOLOR(sw, MT_COLOR_SIDEBAR);
             waddch(sw, ACS_VLINE);
             line++;
         }
     }
 
     while (line < y - 1) {
-        WSETCOLOR(sw, MT_COLOR_NORMAL);
+        SETCOLOR(sw, MT_COLOR_NORMAL);
         waddnstr(sw, blank, x - 1);
-        WSETCOLOR(sw, MT_COLOR_SIDEBAR);
+        SETCOLOR(sw, MT_COLOR_SIDEBAR);
         waddch(sw, ACS_VLINE);
         line++;
     }
 
-    WSETCOLOR(sw, MT_COLOR_STATUS);
+    SETCOLOR(sw, MT_COLOR_STATUS);
     waddnstr(sw, blank, x);
-    WSETCOLOR(sw, MT_COLOR_NORMAL);
+    SETCOLOR(sw, MT_COLOR_NORMAL);
     return 0;
 }