From 930284adc210d1096b2dee5b11882ece0c81c45c Mon Sep 17 00:00:00 2001 From: Alex E Date: Thu, 16 Nov 2023 09:46:25 -0800 Subject: [PATCH] docs: Update Apps.md to remove Screen param (#1752) This is needed since #1629. Co-authored-by: FintasticMan --- doc/code/Apps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/code/Apps.md b/doc/code/Apps.md index cb7cd518..190ad683 100644 --- a/doc/code/Apps.md +++ b/doc/code/Apps.md @@ -58,7 +58,7 @@ namespace Pinetime { namespace Screens { class MyApp : public Screen { public: - MyApp(DisplayApp* app); + MyApp(); ~MyApp() override; }; } @@ -74,7 +74,7 @@ MyApp.cpp: using namespace Pinetime::Applications::Screens; -MyApp::MyApp(DisplayApp* app) : Screen(app) { +MyApp::MyApp() { lv_obj_t* title = lv_label_create(lv_scr_act(), nullptr); lv_label_set_text_static(title, "My test application"); lv_label_set_align(title, LV_LABEL_ALIGN_CENTER);