Panel_new: reorder arguments
Reorder owner and type so they match the order of Panel_init
diff --git a/InfoScreen.c b/InfoScreen.c
index 51bc158..3681088 100644
--- a/InfoScreen.c
+++ b/InfoScreen.c
@@ -26,7 +26,7 @@
if (!bar) {
bar = FunctionBar_new(InfoScreenFunctions, InfoScreenKeys, InfoScreenEvents);
}
- this->display = Panel_new(0, 1, COLS, height, false, Class(ListItem), bar);
+ this->display = Panel_new(0, 1, COLS, height, Class(ListItem), false, bar);
this->inc = IncSet_new(bar);
this->lines = Vector_new(this->display->items->type, true, DEFAULT_SIZE);
Panel_setHeader(this->display, panelHeader);