displayapp: Make Cst816S references const

This commit is contained in:
Riku Isokoski
2023-02-23 22:20:22 +02:00
parent 1c4b97382a
commit 76f07de64b
6 changed files with 8 additions and 8 deletions

View File

@@ -53,7 +53,7 @@ namespace Pinetime {
DisplayApp(Drivers::St7789& lcd,
Components::LittleVgl& lvgl,
Drivers::Cst816S&,
const Drivers::Cst816S&,
const Controllers::Battery& batteryController,
Controllers::Ble& bleController,
Controllers::DateTime& dateTimeController,
@@ -80,7 +80,7 @@ namespace Pinetime {
private:
Pinetime::Drivers::St7789& lcd;
Pinetime::Components::LittleVgl& lvgl;
Pinetime::Drivers::Cst816S& touchPanel;
const Pinetime::Drivers::Cst816S& touchPanel;
const Pinetime::Controllers::Battery& batteryController;
Pinetime::Controllers::Ble& bleController;
Pinetime::Controllers::DateTime& dateTimeController;