Skip to content

Commit b51f571

Browse files
Solved Build Errors
1 parent 7a09c8e commit b51f571

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/displayapp/screens/WatchFaceAnalog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ WatchFaceAnalog::WatchFaceAnalog(Controllers::DateTime& dateTimeController,
5757
batteryController {batteryController},
5858
bleController {bleController},
5959
notificationManager {notificationManager},
60-
alarmController {alarmController},
61-
settingsController {settingsController} {
60+
settingsController {settingsController},
61+
alarmController {alarmController} {
6262

6363
sHour = 99;
6464
sMinute = 99;

src/displayapp/screens/WatchFacePineTimeStyle.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(Controllers::DateTime& dateTimeCo
6262
notificationManager {notificationManager},
6363
settingsController {settingsController},
6464
motionController {motionController},
65-
alarmController {alarmController},
66-
weatherService {weatherService} {
65+
weatherService {weatherService},
66+
alarmController {alarmController} {
6767

6868
// Create a 200px wide background rectangle
6969
timebar = lv_obj_create(lv_scr_act(), nullptr);

src/displayapp/screens/WatchFaceTerminal.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController,
2828
notificationManager {notificationManager},
2929
settingsController {settingsController},
3030
heartRateController {heartRateController},
31-
alarmController {alarmController},
32-
motionController {motionController} {
31+
motionController {motionController},
32+
alarmController {alarmController} {
3333
batteryValue = lv_label_create(lv_scr_act(), nullptr);
3434
lv_label_set_recolor(batteryValue, true);
3535
lv_obj_align(batteryValue, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, -20);

0 commit comments

Comments
 (0)