screens: Remove explicit Screen constructors
This constructor didn't do anything since DisplayApp reference was removed from the Screen base class.
This commit is contained in:
@@ -19,8 +19,7 @@ CheckboxList::CheckboxList(const uint8_t screenID,
|
||||
uint32_t originalValue,
|
||||
std::function<void(uint32_t)> OnValueChanged,
|
||||
std::array<Item, MaxItems> options)
|
||||
: Screen(app),
|
||||
screenID {screenID},
|
||||
: screenID {screenID},
|
||||
OnValueChanged {std::move(OnValueChanged)},
|
||||
options {options},
|
||||
value {originalValue},
|
||||
|
||||
Reference in New Issue
Block a user