aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/code/Apps.md4
1 files 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);