mirror of https://github.com/xzeldon/htop.git
Remove explicit calls to curses.h in other files
This commit is contained in:
parent
8d5dd51cf2
commit
43a7231615
|
@ -12,7 +12,6 @@ in the source distribution for its full text.
|
|||
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <curses.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
||||
|
|
3
CRT.c
3
CRT.c
|
@ -9,8 +9,9 @@ in the source distribution for its full text.
|
|||
|
||||
#include "config.h"
|
||||
#include "String.h"
|
||||
#include "RichString.h"
|
||||
|
||||
#include <curses.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -13,7 +13,6 @@ in the source distribution for its full text.
|
|||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
#include <curses.h>
|
||||
|
||||
/*{
|
||||
#include "Object.h"
|
||||
|
|
|
@ -9,7 +9,6 @@ in the source distribution for its full text.
|
|||
|
||||
#include "CRT.h"
|
||||
|
||||
#include <curses.h>
|
||||
#include <assert.h>
|
||||
|
||||
/*{
|
||||
|
|
|
@ -11,7 +11,6 @@ in the source distribution for its full text.
|
|||
#include "ProcessList.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <curses.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include <sys/param.h>
|
||||
|
|
3
Panel.c
3
Panel.c
|
@ -18,7 +18,6 @@ in the source distribution for its full text.
|
|||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <curses.h>
|
||||
|
||||
//#link curses
|
||||
|
||||
|
@ -295,6 +294,7 @@ void Panel_draw(Panel* this, bool focus) {
|
|||
|
||||
for(int i = first, j = 0; j < this->h && i < last; i++, j++) {
|
||||
Object* itemObj = Vector_get(this->items, i);
|
||||
assert(itemObj); if(!itemObj) continue;
|
||||
RichString_begin(item);
|
||||
Object_display(itemObj, &item);
|
||||
int itemLen = RichString_sizeVal(item);
|
||||
|
@ -319,6 +319,7 @@ void Panel_draw(Panel* this, bool focus) {
|
|||
|
||||
} else {
|
||||
Object* oldObj = Vector_get(this->items, this->oldSelected);
|
||||
assert(oldObj);
|
||||
RichString_begin(old);
|
||||
Object_display(oldObj, &old);
|
||||
int oldLen = RichString_sizeVal(old);
|
||||
|
|
|
@ -11,7 +11,6 @@ in the source distribution for its full text.
|
|||
#include "ProcessList.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <curses.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include <sys/param.h>
|
||||
|
|
Loading…
Reference in New Issue