diff options
Diffstat (limited to 'apps/gui/statusbar.h')
-rw-r--r-- | apps/gui/statusbar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h index 77ceefd69f..e7fe92eaf9 100644 --- a/apps/gui/statusbar.h +++ b/apps/gui/statusbar.h @@ -85,7 +85,8 @@ extern void gui_statusbar_init(struct gui_statusbar * bar); * - bar : the statusbar structure * - display : the screen to attach */ -extern void gui_statusbar_set_screen(struct gui_statusbar * bar, struct screen * display); +#define gui_statusbar_set_screen(gui_statusbar, screen) \ + (gui_statusbar)->display = screen /* * Draws the status bar on the attached screen |