diff options
Diffstat (limited to 'apps/main_clock/main.hpp')
-rw-r--r-- | apps/main_clock/main.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/main_clock/main.hpp b/apps/main_clock/main.hpp index f00958e..7c07cb3 100644 --- a/apps/main_clock/main.hpp +++ b/apps/main_clock/main.hpp @@ -9,7 +9,7 @@ class app_main_clock : public BaseApp { private: bool *ask_user_choice; int *user_choice; - const char *choices[26] = {"One", "Two", "Three!", "This is looong!", "make sure to choose me!:p"}; + const char *choices[10] = {"One", "Close (fg)", "Quit (fg)", "Close (bg)", "Quit (bg)"}; void time_as_str(char *buf, uint buf_size, const datetime_t *t); void date_as_str(char *buf, uint buf_size, const datetime_t *t); @@ -22,8 +22,8 @@ class app_main_clock : public BaseApp { } app_main_clock(Api *app_api); - int render(Api *app_api); - int btnpressed(Api *app_api, uint gpio, unsigned long delta); - int bgrefresh(Api *app_api, bool in_foreground); + AppReturnValues render(Api *app_api); + AppReturnValues btnpressed(Api *app_api, uint gpio, unsigned long delta); + AppReturnValues bgrefresh(Api *app_api, bool in_foreground); ~app_main_clock(); }; |