diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-16 21:51:26 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-16 22:02:29 -0400 |
commit | 805f5316325eea37a90b5299b4a3ba601077f0a5 (patch) | |
tree | bfb255209e7587b164593d61a83abf11c1509f1f | |
parent | e884140eae2b093cc33dae3af20fc72ab621c518 (diff) | |
download | rockbox-805f531.tar.gz rockbox-805f531.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.h | 1 |
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 @@ #define _GUI_STATUSBAR_H_ #include "config.h" +#include "button.h" #include "status.h" #include "screen_access.h" #include "events.h" |