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

@ -26,7 +26,7 @@ namespace Pinetime {
public:
WatchFaceAnalog(DisplayApp* app,
Controllers::DateTime& dateTimeController,
Controllers::Battery& batteryController,
const Controllers::Battery& batteryController,
Controllers::Ble& bleController,
Controllers::NotificationManager& notificationManager,
Controllers::Settings& settingsController);
@ -74,7 +74,7 @@ namespace Pinetime {
BatteryIcon batteryIcon;
const Controllers::DateTime& dateTimeController;
Controllers::Battery& batteryController;
const Controllers::Battery& batteryController;
Controllers::Ble& bleController;
Controllers::NotificationManager& notificationManager;
Controllers::Settings& settingsController;