mirror of https://github.com/xzeldon/htop.git
Removed unused field in ColorsPanel
This commit is contained in:
parent
cf45a5d02b
commit
7146059645
|
@ -50,7 +50,7 @@ static void CategoriesPanel_makeDisplayOptionsPage(CategoriesPanel* this) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void CategoriesPanel_makeColorsPage(CategoriesPanel* this) {
|
static void CategoriesPanel_makeColorsPage(CategoriesPanel* this) {
|
||||||
Panel* colors = (Panel*) ColorsPanel_new(this->settings, this->scr);
|
Panel* colors = (Panel*) ColorsPanel_new(this->settings);
|
||||||
ScreenManager_add(this->scr, colors, -1);
|
ScreenManager_add(this->scr, colors, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -84,14 +84,13 @@ const PanelClass ColorsPanel_class = {
|
||||||
.eventHandler = ColorsPanel_eventHandler
|
.eventHandler = ColorsPanel_eventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr) {
|
ColorsPanel* ColorsPanel_new(Settings* settings) {
|
||||||
ColorsPanel* this = AllocThis(ColorsPanel);
|
ColorsPanel* this = AllocThis(ColorsPanel);
|
||||||
Panel* super = (Panel*) this;
|
Panel* super = (Panel*) this;
|
||||||
FunctionBar* fuBar = FunctionBar_new(ColorsFunctions, NULL, NULL);
|
FunctionBar* fuBar = FunctionBar_new(ColorsFunctions, NULL, NULL);
|
||||||
Panel_init(super, 1, 1, 1, 1, Class(CheckItem), true, fuBar);
|
Panel_init(super, 1, 1, 1, 1, Class(CheckItem), true, fuBar);
|
||||||
|
|
||||||
this->settings = settings;
|
this->settings = settings;
|
||||||
this->scr = scr;
|
|
||||||
|
|
||||||
assert(ARRAYSIZE(ColorSchemeNames) == LAST_COLORSCHEME + 1);
|
assert(ARRAYSIZE(ColorSchemeNames) == LAST_COLORSCHEME + 1);
|
||||||
|
|
||||||
|
|
|
@ -16,11 +16,10 @@ typedef struct ColorsPanel_ {
|
||||||
Panel super;
|
Panel super;
|
||||||
|
|
||||||
Settings* settings;
|
Settings* settings;
|
||||||
ScreenManager* scr;
|
|
||||||
} ColorsPanel;
|
} ColorsPanel;
|
||||||
|
|
||||||
extern const PanelClass ColorsPanel_class;
|
extern const PanelClass ColorsPanel_class;
|
||||||
|
|
||||||
ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr);
|
ColorsPanel* ColorsPanel_new(Settings* settings);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue