summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/statusbar.h')
-rw-r--r--apps/gui/statusbar.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h
index 2be765b8e8..8862620596 100644
--- a/apps/gui/statusbar.h
+++ b/apps/gui/statusbar.h
@@ -33,10 +33,6 @@ struct status_info {
33 int volume; 33 int volume;
34 int playmode; 34 int playmode;
35 int repeat; 35 int repeat;
36#if CONFIG_RTC
37 struct tm *time;
38#endif
39
40#if CONFIG_CHARGING 36#if CONFIG_CHARGING
41 bool inserted; 37 bool inserted;
42#endif 38#endif
@@ -65,7 +61,10 @@ struct gui_statusbar
65 61
66 struct status_info info; 62 struct status_info info;
67 struct status_info lastinfo; 63 struct status_info lastinfo;
68 64#if CONFIG_RTC
65 struct tm *time;
66 int last_tm_min;
67#endif
69 struct screen * display; 68 struct screen * display;
70}; 69};
71 70