CheckBoxList : rename newValue -> value.

This commit is contained in:
Jean-François Milants 2022-10-11 21:02:05 +02:00 committed by JF
parent cf8b422899
commit 4ec49bde8a
2 changed files with 4 additions and 5 deletions

View file

@ -22,8 +22,7 @@ CheckboxList::CheckboxList(const uint8_t screenID,
: Screen(app),
screenID {screenID},
OnValueChanged{std::move(OnValueChanged)},
options {options},
newValue{originalValue} {
options {options}, value {originalValue} {
// Set the background to Black
lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
@ -92,7 +91,7 @@ CheckboxList::CheckboxList(const uint8_t screenID,
CheckboxList::~CheckboxList() {
lv_obj_clean(lv_scr_act());
OnValueChanged(newValue);
OnValueChanged(value);
}
void CheckboxList::UpdateSelected(lv_obj_t* object, lv_event_t event) {
@ -101,7 +100,7 @@ void CheckboxList::UpdateSelected(lv_obj_t* object, lv_event_t event) {
if (strcmp(options[i], "")) {
if (object == cbOption[i]) {
lv_checkbox_set_checked(cbOption[i], true);
newValue = MaxItems * screenID + i;
value = MaxItems * screenID + i;
} else {
lv_checkbox_set_checked(cbOption[i], false);
}

View file

@ -34,7 +34,7 @@ namespace Pinetime {
std::array<lv_point_t, 2> pageIndicatorPoints;
lv_obj_t* pageIndicatorBase;
lv_obj_t* pageIndicator;
uint32_t newValue;
uint32_t value;
};
}
}