Author: Jean-François Milants <jf@codingfield.com>
CheckBoxList : rename newValue -> value.
src/displayapp/screens/CheckboxList.cpp | 7 +++---- src/displayapp/screens/CheckboxList.h | 2 +-
diff --git a/src/displayapp/screens/CheckboxList.cpp b/src/displayapp/screens/CheckboxList.cpp index 42f9f57ded8c47e1729f5946b9ea187bd49b4eaa..3d84166cbe4b8190221691a6b5097e87fde82b75 100644 --- a/src/displayapp/screens/CheckboxList.cpp +++ b/src/displayapp/screens/CheckboxList.cpp @@ -22,8 +22,7 @@ std::arrayoptions) : 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() { 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 @@ for (unsigned int i = 0; i < options.size(); i++) { 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); } diff --git a/src/displayapp/screens/CheckboxList.h b/src/displayapp/screens/CheckboxList.h index 4d27a62b9dbe7588a3bf9acea2b36577567180d9..1bdb89d2c1f356ce0cb3d6cdb265d6ff8edcb77b 100644 --- a/src/displayapp/screens/CheckboxList.h +++ b/src/displayapp/screens/CheckboxList.h @@ -34,7 +34,7 @@ std::array pageIndicatorBasePoints; std::array<lv_point_t, 2> pageIndicatorPoints; lv_obj_t* pageIndicatorBase; lv_obj_t* pageIndicator; - uint32_t newValue; + uint32_t value; }; } }