diff options
Diffstat (limited to 'wear_ui.h')
-rw-r--r-- | wear_ui.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -19,11 +19,13 @@ #include "screen_ui.h" +#include <string> + class WearRecoveryUI : public ScreenRecoveryUI { public: WearRecoveryUI(); - void Init() override; + bool Init(const std::string& locale) override; void SetStage(int current, int max) override; @@ -52,7 +54,7 @@ class WearRecoveryUI : public ScreenRecoveryUI { int GetProgressBaseline() override; - void InitTextParams() override; + bool InitTextParams() override; void update_progress_locked() override; |