From ce9e7fd14f58467e3062b76d0132ebeb973a5e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sat, 2 Jan 2021 23:51:53 +0100 Subject: Panel_new: reorder arguments Reorder owner and type so they match the order of Panel_init --- Panel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Panel.h') diff --git a/Panel.h b/Panel.h index 6b442793..945718ae 100644 --- a/Panel.h +++ b/Panel.h @@ -78,7 +78,7 @@ struct Panel_ { extern const PanelClass Panel_class; -Panel* Panel_new(int x, int y, int w, int h, bool owner, const ObjectClass* type, FunctionBar* fuBar); +Panel* Panel_new(int x, int y, int w, int h, const ObjectClass* type, bool owner, FunctionBar* fuBar); void Panel_delete(Object* cast); -- cgit v1.2.3