displayapp: Make Battery class references const

This commit is contained in:
Riku Isokoski
2023-02-23 22:16:44 +02:00
parent 1516b082fd
commit 1c4b97382a
30 changed files with 41 additions and 41 deletions

View File

@@ -24,7 +24,7 @@ namespace Pinetime {
public:
explicit SystemInfo(DisplayApp* app,
Pinetime::Controllers::DateTime& dateTimeController,
Pinetime::Controllers::Battery& batteryController,
const Pinetime::Controllers::Battery& batteryController,
Pinetime::Controllers::BrightnessController& brightnessController,
Pinetime::Controllers::Ble& bleController,
Pinetime::Drivers::WatchdogView& watchdog,
@@ -35,7 +35,7 @@ namespace Pinetime {
private:
Pinetime::Controllers::DateTime& dateTimeController;
Pinetime::Controllers::Battery& batteryController;
const Pinetime::Controllers::Battery& batteryController;
Pinetime::Controllers::BrightnessController& brightnessController;
Pinetime::Controllers::Ble& bleController;
Pinetime::Drivers::WatchdogView& watchdog;