Merge pull request #757 from stephanie-eng/patch-1

Fixed Apps tutorial to compile properly
main
JF 2021-10-20 21:14:17 +07:00 committed by GitHub
commit 9b46354bef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

@ -51,14 +51,14 @@ MyApp.h:
#include "displayapp/screens/Screen.h" #include "displayapp/screens/Screen.h"
#include <lvgl/lvgl.h> #include <lvgl/lvgl.h>
namespace PineTime { namespace Pinetime {
namespace Applications { namespace Applications {
namespace Screens { namespace Screens {
class MyApp : public Screen { class MyApp : public Screen {
public: public:
MyApp(DisplayApp* app); MyApp(DisplayApp* app);
~MyApp() override; ~MyApp() override;
} };
} }
} }
} }