summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-16 21:51:26 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-16 22:02:29 -0400
commit805f5316325eea37a90b5299b4a3ba601077f0a5 (patch)
treebfb255209e7587b164593d61a83abf11c1509f1f
parente884140eae2b093cc33dae3af20fc72ab621c518 (diff)
downloadrockbox-805f5316325eea37a90b5299b4a3ba601077f0a5.tar.gz
rockbox-805f5316325eea37a90b5299b4a3ba601077f0a5.zip
statusbar: explicitly #include <button.h>
This header relies on stuff that might get defined in button.h, and was reliant upon being implicitly included. The last thing we want is a struct to change layout underneath us! Change-Id: If96451bc5e2219031a592ab82c56045188dbe645
-rw-r--r--apps/gui/statusbar.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h
index 7ad07d0c78..45bd0c6ee1 100644
--- a/apps/gui/statusbar.h
+++ b/apps/gui/statusbar.h
@@ -23,6 +23,7 @@
23#define _GUI_STATUSBAR_H_ 23#define _GUI_STATUSBAR_H_
24 24
25#include "config.h" 25#include "config.h"
26#include "button.h"
26#include "status.h" 27#include "status.h"
27#include "screen_access.h" 28#include "screen_access.h"
28#include "events.h" 29#include "events.h"