Service data refactored (#109)

This commit is contained in:
Ken Van Hoeylandt
2024-12-06 01:02:53 +01:00
committed by GitHub
parent c6f1cd6098
commit 36bb25deba
16 changed files with 194 additions and 221 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ static void onShow(TT_UNUSED AppContext& app, lv_obj_t* parent) {
}
static void onStart(AppContext& app) {
auto data = std::shared_ptr<Data>(new Data());
auto data = std::make_shared<Data>();
app.setData(data);
}