Removed unused field in ColorsPanel

This commit is contained in:
Benny Baumann
2021-08-21 17:58:23 +02:00
committed by Christian Göttsche
parent cf45a5d02b
commit 7146059645
3 changed files with 3 additions and 5 deletions

View File

@ -16,11 +16,10 @@ typedef struct ColorsPanel_ {
Panel super;
Settings* settings;
ScreenManager* scr;
} ColorsPanel;
extern const PanelClass ColorsPanel_class;
ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr);
ColorsPanel* ColorsPanel_new(Settings* settings);
#endif