summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJF <JF002@users.noreply.github.com>2022-01-26 21:00:33 (GMT)
committerGitHub <noreply@github.com>2022-01-26 21:00:33 (GMT)
commitb12603448ccfa772aa3a8c8e1ce29fad0f323e7a (patch)
treeb65540aee369d5d5de25c77e71193a9f91bdf1fd
parent71c895dc719e81558325772cbd704e1aeaf9288e (diff)
parent67f546fa330f7bbe251bfde432b36284db1a79dd (diff)
Merge pull request #959 from NeroBurner/stopwatch_include_cleanup
StopWatch: cleanup unused includes and use relative to src includes
-rw-r--r--src/displayapp/screens/StopWatch.cpp9
-rw-r--r--src/displayapp/screens/StopWatch.h2
2 files changed, 4 insertions, 7 deletions
diff --git a/src/displayapp/screens/StopWatch.cpp b/src/displayapp/screens/StopWatch.cpp
index a260d29..8749839 100644
--- a/src/displayapp/screens/StopWatch.cpp
+++ b/src/displayapp/screens/StopWatch.cpp
@@ -1,13 +1,10 @@
-#include "StopWatch.h"
+#include "displayapp/screens/StopWatch.h"
#include "displayapp/screens/Screen.h"
#include "displayapp/screens/Symbols.h"
#include <lvgl/lvgl.h>
-#include "projdefs.h"
-#include "FreeRTOSConfig.h"
-#include "task.h"
-
-#include <tuple>
+#include <FreeRTOS.h>
+#include <task.h>
using namespace Pinetime::Applications::Screens;
diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h
index 0720a58..06193f6 100644
--- a/src/displayapp/screens/StopWatch.h
+++ b/src/displayapp/screens/StopWatch.h
@@ -4,7 +4,7 @@
#include "components/datetime/DateTimeController.h"
#include "displayapp/LittleVgl.h"
-#include "FreeRTOS.h"
+#include <FreeRTOS.h>
#include "portmacro_cmsis.h"
#include <array>