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-09 00:28:04 +0200
commit17fa5c7cab503015bde05fbe0455f8a6a3344396 (patch)
tree567e0908c310f7b8e3e75ea18a9250445807f525 /screen_ui.h
parentImport translations. DO NOT MERGE (diff)
downloadandroid_bootable_recovery-17fa5c7cab503015bde05fbe0455f8a6a3344396.tar
android_bootable_recovery-17fa5c7cab503015bde05fbe0455f8a6a3344396.tar.gz
android_bootable_recovery-17fa5c7cab503015bde05fbe0455f8a6a3344396.tar.bz2
android_bootable_recovery-17fa5c7cab503015bde05fbe0455f8a6a3344396.tar.lz
android_bootable_recovery-17fa5c7cab503015bde05fbe0455f8a6a3344396.tar.xz
android_bootable_recovery-17fa5c7cab503015bde05fbe0455f8a6a3344396.tar.zst
android_bootable_recovery-17fa5c7cab503015bde05fbe0455f8a6a3344396.zip
Diffstat (limited to '')
-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;