Skip to content

Commit f0de88b

Browse files
author
Aaron Züger
committed
remove residue from WatchFaceSlowTime
1 parent 22b86bb commit f0de88b

File tree

7 files changed

+3
-398
lines changed

7 files changed

+3
-398
lines changed

src/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,6 @@ list(APPEND SOURCE_FILES
432432
displayapp/screens/WatchFaceTerminal.cpp
433433
displayapp/screens/WatchFacePineTimeStyle.cpp
434434
displayapp/screens/WatchFaceCasioStyleG7710.cpp
435-
displayapp/screens/WatchFaceSlowTime.cpp
436435

437436
##
438437

src/displayapp/WatchFaces.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ namespace Pinetime {
77
Analog = 1,
88
PineTimeStyle = 2,
99
Terminal = 3,
10-
SlowTime = 4,
11-
Infineat = 5,
12-
CasioStyleG7710 = 6,
10+
Infineat = 4,
11+
CasioStyleG7710 = 5,
1312
};
1413
}
1514
}

src/displayapp/screens/Clock.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#include "displayapp/screens/WatchFaceAnalog.h"
1414
#include "displayapp/screens/WatchFacePineTimeStyle.h"
1515
#include "displayapp/screens/WatchFaceCasioStyleG7710.h"
16-
#include "displayapp/screens/WatchFaceSlowTime.h"
1716

1817
using namespace Pinetime::Applications::Screens;
1918
using namespace Pinetime::Applications;
@@ -56,9 +55,6 @@ Clock::Clock(Controllers::DateTime& dateTimeController,
5655
case WatchFace::CasioStyleG7710:
5756
return WatchFaceCasioStyleG7710();
5857
break;
59-
case WatchFace::SlowTime:
60-
return WatchFaceSlowTimeScreen();
61-
break;
6258
}
6359
return WatchFaceDigitalScreen();
6460
}()} {
@@ -136,10 +132,3 @@ std::unique_ptr<Screen> Clock::WatchFaceCasioStyleG7710() {
136132
filesystem);
137133
}
138134

139-
std::unique_ptr<Screen> Clock::WatchFaceSlowTimeScreen() {
140-
return std::make_unique<Screens::WatchFaceSlowTime>(dateTimeController,
141-
batteryController,
142-
bleController,
143-
notificationManager,
144-
settingsController);
145-
}

src/displayapp/screens/Clock.h

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ namespace Pinetime {
5757
std::unique_ptr<Screen> WatchFaceTerminalScreen();
5858
std::unique_ptr<Screen> WatchFaceInfineatScreen();
5959
std::unique_ptr<Screen> WatchFaceCasioStyleG7710();
60-
std::unique_ptr<Screen> WatchFaceSlowTimeScreen();
6160
};
6261
}
6362
}

src/displayapp/screens/WatchFaceSlowTime.cpp

-286
This file was deleted.

0 commit comments

Comments
 (0)