summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/CheckboxList.h
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2022-10-11 21:11:23 +0200
committerJF <JF002@users.noreply.github.com>2022-10-11 21:16:33 +0200
commit8c7be1fbb1d172ffc5cf99ec2b013f11f35dc421 (patch)
tree2807e32c74255e22038e40c5414ce0069e44658d /src/displayapp/screens/CheckboxList.h
parent4ec49bde8a8cce78b8b72c978b3e3b1d529cef48 (diff)
CheckboxList : fix formatting.
Diffstat (limited to 'src/displayapp/screens/CheckboxList.h')
-rw-r--r--src/displayapp/screens/CheckboxList.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/displayapp/screens/CheckboxList.h b/src/displayapp/screens/CheckboxList.h
index 1bdb89d2..f9c3bae0 100644
--- a/src/displayapp/screens/CheckboxList.h
+++ b/src/displayapp/screens/CheckboxList.h
@@ -20,14 +20,14 @@ namespace Pinetime {
const char* optionsTitle,
const char* optionsSymbol,
uint32_t originalValue,
- std::function<void(uint32_t)>OnValueChanged,
+ std::function<void(uint32_t)> OnValueChanged,
std::array<const char*, MaxItems> options);
~CheckboxList() override;
void UpdateSelected(lv_obj_t* object, lv_event_t event);
private:
const uint8_t screenID;
- std::function<void(uint32_t)>OnValueChanged;
+ std::function<void(uint32_t)> OnValueChanged;
std::array<const char*, MaxItems> options;
std::array<lv_obj_t*, MaxItems> cbOption;
std::array<lv_point_t, 2> pageIndicatorBasePoints;