SettingShakeThreshold: add missing SystemTask.h, relative include

SettingShakeThreshold.h uses SystemTask, but doesn't include the header.
Fixing that for the simulator.

For consistency make the header include a relative to src include.
This commit is contained in:
Reinhold Gschweicher 2022-02-15 23:56:42 +01:00 committed by JF
parent a2a70f8eda
commit 4aaa3a3b49
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,4 @@
#include "SettingShakeThreshold.h" #include "displayapp/screens/settings/SettingShakeThreshold.h"
#include <lvgl/lvgl.h> #include <lvgl/lvgl.h>
#include "displayapp/DisplayApp.h" #include "displayapp/DisplayApp.h"
#include "displayapp/screens/Screen.h" #include "displayapp/screens/Screen.h"

View file

@ -5,6 +5,7 @@
#include "components/settings/Settings.h" #include "components/settings/Settings.h"
#include "displayapp/screens/Screen.h" #include "displayapp/screens/Screen.h"
#include <components/motion/MotionController.h> #include <components/motion/MotionController.h>
#include "systemtask/SystemTask.h"
namespace Pinetime { namespace Pinetime {
namespace Applications { namespace Applications {