aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/settings/SettingSetDateTime.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused pointer to DisplayApp member variables (#2125)NeroBurner2024-09-291-1/+0
| | | | | | | | In the screens that use `DisplayApp *app` and pass it to a child item, or use the reference just in the constructor. Afterwards the `app` member is not used. So remove it from the private member variables. Completely remove `app` parameter from `SettingDisplay` constructor as it is unused.
* screens: Remove displayapp parameter from screenRiku Isokoski2023-02-251-0/+1
| | | | | | | | The DisplayApp class isn't used in the Screen base class and most screens, so requiring it is pointless. In this commit, DisplayApp pointers were added to screens which use it and the explicit Screen constructor was removed in those screens.
* Combine Date and Time Settings (#1465)John Quigley2023-01-141-0/+32
Replace separate SettingSetDate and SettingSetTime with a combined screenlist. Add DotIndicators. Similar to PageIndicator, but for use when separating screens instead of pages of a list. Co-authored-by: Riku Isokoski <riksu9000@gmail.com>