fix typo
This commit is contained in:
		
							parent
							
								
									63932810d2
								
							
						
					
					
						commit
						79728730d7
					
				| @ -20,7 +20,7 @@ Clock::Clock(DisplayApp* app, | ||||
|              Controllers::DateTime& dateTimeController, | ||||
|              Controllers::Battery& batteryController, | ||||
|              Controllers::Ble& bleController, | ||||
|              Controllers::NotificationManager& notificatioManager, | ||||
|              Controllers::NotificationManager& notificationManager, | ||||
|              Controllers::Settings& settingsController, | ||||
|              Controllers::HeartRateController& heartRateController, | ||||
|              Controllers::MotionController& motionController, | ||||
| @ -29,7 +29,7 @@ Clock::Clock(DisplayApp* app, | ||||
|     dateTimeController {dateTimeController}, | ||||
|     batteryController {batteryController}, | ||||
|     bleController {bleController}, | ||||
|     notificatioManager {notificatioManager}, | ||||
|     notificationManager {notificationManager}, | ||||
|     settingsController {settingsController}, | ||||
|     heartRateController {heartRateController}, | ||||
|     motionController {motionController}, | ||||
| @ -74,7 +74,7 @@ std::unique_ptr<Screen> Clock::WatchFaceDigitalScreen() { | ||||
|                                                      dateTimeController, | ||||
|                                                      batteryController, | ||||
|                                                      bleController, | ||||
|                                                      notificatioManager, | ||||
|                                                      notificationManager, | ||||
|                                                      settingsController, | ||||
|                                                      heartRateController, | ||||
|                                                      motionController); | ||||
| @ -85,7 +85,7 @@ std::unique_ptr<Screen> Clock::WatchFaceAnalogScreen() { | ||||
|                                                     dateTimeController, | ||||
|                                                     batteryController, | ||||
|                                                     bleController, | ||||
|                                                     notificatioManager, | ||||
|                                                     notificationManager, | ||||
|                                                     settingsController); | ||||
| } | ||||
| 
 | ||||
| @ -94,7 +94,7 @@ std::unique_ptr<Screen> Clock::WatchFacePineTimeStyleScreen() { | ||||
|                                                            dateTimeController, | ||||
|                                                            batteryController, | ||||
|                                                            bleController, | ||||
|                                                            notificatioManager, | ||||
|                                                            notificationManager, | ||||
|                                                            settingsController, | ||||
|                                                            motionController); | ||||
| } | ||||
| @ -104,7 +104,7 @@ std::unique_ptr<Screen> Clock::WatchFaceTerminalScreen() { | ||||
|                                                       dateTimeController, | ||||
|                                                       batteryController, | ||||
|                                                       bleController, | ||||
|                                                       notificatioManager, | ||||
|                                                       notificationManager, | ||||
|                                                       settingsController, | ||||
|                                                       heartRateController, | ||||
|                                                       motionController); | ||||
|  | ||||
| @ -25,7 +25,7 @@ namespace Pinetime { | ||||
|               Controllers::DateTime& dateTimeController, | ||||
|               Controllers::Battery& batteryController, | ||||
|               Controllers::Ble& bleController, | ||||
|               Controllers::NotificationManager& notificatioManager, | ||||
|               Controllers::NotificationManager& notificationManager, | ||||
|               Controllers::Settings& settingsController, | ||||
|               Controllers::HeartRateController& heartRateController, | ||||
|               Controllers::MotionController& motionController, | ||||
| @ -39,7 +39,7 @@ namespace Pinetime { | ||||
|         Controllers::DateTime& dateTimeController; | ||||
|         Controllers::Battery& batteryController; | ||||
|         Controllers::Ble& bleController; | ||||
|         Controllers::NotificationManager& notificatioManager; | ||||
|         Controllers::NotificationManager& notificationManager; | ||||
|         Controllers::Settings& settingsController; | ||||
|         Controllers::HeartRateController& heartRateController; | ||||
|         Controllers::MotionController& motionController; | ||||
|  | ||||
| @ -18,14 +18,14 @@ WatchFaceDigital::WatchFaceDigital(DisplayApp* app, | ||||
|                                    Controllers::DateTime& dateTimeController, | ||||
|                                    Controllers::Battery& batteryController, | ||||
|                                    Controllers::Ble& bleController, | ||||
|                                    Controllers::NotificationManager& notificatioManager, | ||||
|                                    Controllers::NotificationManager& notificationManager, | ||||
|                                    Controllers::Settings& settingsController, | ||||
|                                    Controllers::HeartRateController& heartRateController, | ||||
|                                    Controllers::MotionController& motionController) | ||||
|   : Screen(app), | ||||
|     currentDateTime {{}}, | ||||
|     dateTimeController {dateTimeController}, | ||||
|     notificatioManager {notificatioManager}, | ||||
|     notificationManager {notificationManager}, | ||||
|     settingsController {settingsController}, | ||||
|     heartRateController {heartRateController}, | ||||
|     motionController {motionController}, | ||||
| @ -83,7 +83,7 @@ WatchFaceDigital::~WatchFaceDigital() { | ||||
| void WatchFaceDigital::Refresh() { | ||||
|   statusIcons.Update(); | ||||
| 
 | ||||
|   notificationState = notificatioManager.AreNewNotificationsAvailable(); | ||||
|   notificationState = notificationManager.AreNewNotificationsAvailable(); | ||||
|   if (notificationState.IsUpdated()) { | ||||
|     lv_label_set_text_static(notificationIcon, NotificationIcon::GetIcon(notificationState.Get())); | ||||
|   } | ||||
|  | ||||
| @ -28,7 +28,7 @@ namespace Pinetime { | ||||
|                          Controllers::DateTime& dateTimeController, | ||||
|                          Controllers::Battery& batteryController, | ||||
|                          Controllers::Ble& bleController, | ||||
|                          Controllers::NotificationManager& notificatioManager, | ||||
|                          Controllers::NotificationManager& notificationManager, | ||||
|                          Controllers::Settings& settingsController, | ||||
|                          Controllers::HeartRateController& heartRateController, | ||||
|                          Controllers::MotionController& motionController); | ||||
| @ -66,7 +66,7 @@ namespace Pinetime { | ||||
|         lv_obj_t* notificationIcon; | ||||
| 
 | ||||
|         Controllers::DateTime& dateTimeController; | ||||
|         Controllers::NotificationManager& notificatioManager; | ||||
|         Controllers::NotificationManager& notificationManager; | ||||
|         Controllers::Settings& settingsController; | ||||
|         Controllers::HeartRateController& heartRateController; | ||||
|         Controllers::MotionController& motionController; | ||||
|  | ||||
| @ -48,7 +48,7 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app, | ||||
|                                                Controllers::DateTime& dateTimeController, | ||||
|                                                Controllers::Battery& batteryController, | ||||
|                                                Controllers::Ble& bleController, | ||||
|                                                Controllers::NotificationManager& notificatioManager, | ||||
|                                                Controllers::NotificationManager& notificationManager, | ||||
|                                                Controllers::Settings& settingsController, | ||||
|                                                Controllers::MotionController& motionController) | ||||
|   : Screen(app), | ||||
| @ -56,7 +56,7 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app, | ||||
|     dateTimeController {dateTimeController}, | ||||
|     batteryController {batteryController}, | ||||
|     bleController {bleController}, | ||||
|     notificatioManager {notificatioManager}, | ||||
|     notificationManager {notificationManager}, | ||||
|     settingsController {settingsController}, | ||||
|     motionController {motionController} { | ||||
| 
 | ||||
| @ -378,7 +378,7 @@ void WatchFacePineTimeStyle::Refresh() { | ||||
|     AlignIcons(); | ||||
|   } | ||||
| 
 | ||||
|   notificationState = notificatioManager.AreNewNotificationsAvailable(); | ||||
|   notificationState = notificationManager.AreNewNotificationsAvailable(); | ||||
|   if (notificationState.IsUpdated()) { | ||||
|     lv_label_set_text_static(notificationIcon, NotificationIcon::GetIcon(notificationState.Get())); | ||||
|     AlignIcons(); | ||||
|  | ||||
| @ -28,7 +28,7 @@ namespace Pinetime { | ||||
|                                Controllers::DateTime& dateTimeController, | ||||
|                                Controllers::Battery& batteryController, | ||||
|                                Controllers::Ble& bleController, | ||||
|                                Controllers::NotificationManager& notificatioManager, | ||||
|                                Controllers::NotificationManager& notificationManager, | ||||
|                                Controllers::Settings& settingsController, | ||||
|                                Controllers::MotionController& motionController); | ||||
|         ~WatchFacePineTimeStyle() override; | ||||
| @ -98,7 +98,7 @@ namespace Pinetime { | ||||
|         Controllers::DateTime& dateTimeController; | ||||
|         Controllers::Battery& batteryController; | ||||
|         Controllers::Ble& bleController; | ||||
|         Controllers::NotificationManager& notificatioManager; | ||||
|         Controllers::NotificationManager& notificationManager; | ||||
|         Controllers::Settings& settingsController; | ||||
|         Controllers::MotionController& motionController; | ||||
| 
 | ||||
|  | ||||
| @ -17,7 +17,7 @@ WatchFaceTerminal::WatchFaceTerminal(DisplayApp* app, | ||||
|                                      Controllers::DateTime& dateTimeController, | ||||
|                                      Controllers::Battery& batteryController, | ||||
|                                      Controllers::Ble& bleController, | ||||
|                                      Controllers::NotificationManager& notificatioManager, | ||||
|                                      Controllers::NotificationManager& notificationManager, | ||||
|                                      Controllers::Settings& settingsController, | ||||
|                                      Controllers::HeartRateController& heartRateController, | ||||
|                                      Controllers::MotionController& motionController) | ||||
| @ -26,7 +26,7 @@ WatchFaceTerminal::WatchFaceTerminal(DisplayApp* app, | ||||
|     dateTimeController {dateTimeController}, | ||||
|     batteryController {batteryController}, | ||||
|     bleController {bleController}, | ||||
|     notificatioManager {notificatioManager}, | ||||
|     notificationManager {notificationManager}, | ||||
|     settingsController {settingsController}, | ||||
|     heartRateController {heartRateController}, | ||||
|     motionController {motionController} { | ||||
| @ -100,7 +100,7 @@ void WatchFaceTerminal::Refresh() { | ||||
|     } | ||||
|   } | ||||
| 
 | ||||
|   notificationState = notificatioManager.AreNewNotificationsAvailable(); | ||||
|   notificationState = notificationManager.AreNewNotificationsAvailable(); | ||||
|   if (notificationState.IsUpdated()) { | ||||
|     if (notificationState.Get()) { | ||||
|       lv_label_set_text_static(notificationIcon, "You have mail."); | ||||
|  | ||||
| @ -26,7 +26,7 @@ namespace Pinetime { | ||||
|                           Controllers::DateTime& dateTimeController, | ||||
|                           Controllers::Battery& batteryController, | ||||
|                           Controllers::Ble& bleController, | ||||
|                           Controllers::NotificationManager& notificatioManager, | ||||
|                           Controllers::NotificationManager& notificationManager, | ||||
|                           Controllers::Settings& settingsController, | ||||
|                           Controllers::HeartRateController& heartRateController, | ||||
|                           Controllers::MotionController& motionController); | ||||
| @ -68,7 +68,7 @@ namespace Pinetime { | ||||
|         Controllers::DateTime& dateTimeController; | ||||
|         Controllers::Battery& batteryController; | ||||
|         Controllers::Ble& bleController; | ||||
|         Controllers::NotificationManager& notificatioManager; | ||||
|         Controllers::NotificationManager& notificationManager; | ||||
|         Controllers::Settings& settingsController; | ||||
|         Controllers::HeartRateController& heartRateController; | ||||
|         Controllers::MotionController& motionController; | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 minacode
						minacode