aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/main.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/main.hpp')
-rw-r--r--apps/settings/main.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/settings/main.hpp b/apps/settings/main.hpp
index d9eabda..f9ea564 100644
--- a/apps/settings/main.hpp
+++ b/apps/settings/main.hpp
@@ -9,9 +9,9 @@ class app_settings : public BaseApp {
char display_setting_name[SIZE_SETTING_NAME];
bool selected = false;
- void show_title(Api *app_api);
- void set0_menu(Api *app_api);
- void set1_menu(Api *app_api);
+ void show_title(AppAPI *app_api);
+ void set0_menu(AppAPI *app_api);
+ void set1_menu(AppAPI *app_api);
AppAttributes app_attributes = {2, true};
public:
@@ -19,10 +19,10 @@ class app_settings : public BaseApp {
return app_attributes;
}
- app_settings(Api *app_api);
- AppReturnValues render(Api *app_api);
- AppReturnValues btn_pressed(Api *app_api, uint gpio, unsigned long delta);
- AppReturnValues bgrefresh(Api *app_api, bool in_foreground);
+ app_settings(AppAPI *app_api);
+ AppReturnValues render(AppAPI *app_api);
+ AppReturnValues btn_pressed(AppAPI *app_api, uint gpio, unsigned long delta);
+ AppReturnValues bgrefresh(AppAPI *app_api, bool in_foreground);
~app_settings();
};
#include "strings-undef.hpp"