diff --git a/src/filegui.c b/src/filegui.c
index 441adb7..4f0579f 100644
a
|
b
|
|
58 | 58 | #include "dialog.h" /* do_refresh() */ |
59 | 59 | #include "color.h" /* dialog_colors */ |
60 | 60 | #include "widget.h" /* WLabel */ |
61 | | #define WANT_WIDGETS |
62 | 61 | #include "main.h" /* the_hint */ |
63 | 62 | #include "wtools.h" /* QuickDialog */ |
64 | 63 | #include "panel.h" /* current_panel */ |
diff --git a/src/layout.c b/src/layout.c
index 9f3616f..eb4bdd9 100644
a
|
b
|
|
51 | 51 | #include "command.h" |
52 | 52 | #include "profile.h" /* For sync_profiles() */ |
53 | 53 | #include "mouse.h" |
54 | | #define WANT_WIDGETS |
55 | 54 | #include "main.h" |
56 | 55 | #include "subshell.h" /* For use_subshell and resize_subshell() */ |
57 | 56 | #include "tree.h" |
diff --git a/src/main.h b/src/main.h
index 3f3c695..d0ef24d 100644
a
|
b
|
char *get_mc_lib_dir (void); |
116 | 116 | int maybe_cd (int move_up_dir); |
117 | 117 | void do_possible_cd (const char *dir); |
118 | 118 | |
119 | | #ifdef WANT_WIDGETS |
120 | 119 | extern WButtonBar *the_bar; |
121 | 120 | extern WLabel *the_prompt; |
122 | 121 | extern WLabel *the_hint; |
123 | 122 | extern Dlg_head *midnight_dlg; |
124 | 123 | |
125 | 124 | extern struct WMenu *the_menubar; |
126 | | #endif /* WANT_WIDGETS */ |
127 | 125 | |
128 | 126 | void done_menu (void); |
129 | 127 | void init_menu (void); |
diff --git a/src/screen.c b/src/screen.c
index 74604f4..036795f 100644
a
|
b
|
|
47 | 47 | #include "execute.h" |
48 | 48 | #include "widget.h" |
49 | 49 | #include "menu.h" /* menubar_visible */ |
50 | | #define WANT_WIDGETS |
51 | 50 | #include "main.h" /* the_menubar */ |
52 | 51 | #include "unixcompat.h" |
53 | 52 | |