summaryrefslogtreecommitdiffstats
path: root/screen_ui.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-09-07 22:38:51 +0200
committerTao Bao <tbao@google.com>2017-09-08 19:50:07 +0200
commite15d7a5104978cd8399501636aec0df9c1a4823c (patch)
tree7687f86225f3725f505c6ee1d3f59e21d041c40b /screen_ui.h
parentMerge "wear_ui: Remove PrintOnScreenOnly() and PrintV()." (diff)
downloadandroid_bootable_recovery-e15d7a5104978cd8399501636aec0df9c1a4823c.tar
android_bootable_recovery-e15d7a5104978cd8399501636aec0df9c1a4823c.tar.gz
android_bootable_recovery-e15d7a5104978cd8399501636aec0df9c1a4823c.tar.bz2
android_bootable_recovery-e15d7a5104978cd8399501636aec0df9c1a4823c.tar.lz
android_bootable_recovery-e15d7a5104978cd8399501636aec0df9c1a4823c.tar.xz
android_bootable_recovery-e15d7a5104978cd8399501636aec0df9c1a4823c.tar.zst
android_bootable_recovery-e15d7a5104978cd8399501636aec0df9c1a4823c.zip
Diffstat (limited to 'screen_ui.h')
-rw-r--r--screen_ui.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/screen_ui.h b/screen_ui.h
index 62dda7558..8231a2ba0 100644
--- a/screen_ui.h
+++ b/screen_ui.h
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <string>
+#include <vector>
#include "ui.h"
@@ -127,7 +128,7 @@ class ScreenRecoveryUI : public RecoveryUI {
bool show_text;
bool show_text_ever; // has show_text ever been true?
- char** menu_;
+ std::vector<std::string> menu_;
const char* const* menu_headers_;
bool show_menu;
int menu_items, menu_sel;