mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-08 20:41:59 +03:00
* layout.c: Make more variables static.
This commit is contained in:
parent
d816549ab9
commit
905b9ac8f8
@ -1,5 +1,7 @@
|
||||
2001-11-29 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* layout.c: Make more variables static.
|
||||
|
||||
* cons.saver.c: Define LINUX_CONS_SAVER_C so that some parts
|
||||
of cons.saver.h can be omitted.
|
||||
* cons.saver.h: Declare nothing but constants if
|
||||
|
@ -112,7 +112,7 @@ int output_start_y = 0;
|
||||
/* Janne gets around this, we will only manage two of them :-) */
|
||||
#define MAX_VIEWS 2
|
||||
|
||||
struct {
|
||||
static struct {
|
||||
int type;
|
||||
Widget *widget;
|
||||
} panels [MAX_VIEWS];
|
||||
@ -155,7 +155,8 @@ static char *s_split_direction [2] = {
|
||||
N_("&Vertical"),
|
||||
N_("&Horizontal")
|
||||
};
|
||||
WRadio *radio_widget;
|
||||
|
||||
static WRadio *radio_widget;
|
||||
|
||||
static struct {
|
||||
char *text;
|
||||
|
Loading…
Reference in New Issue
Block a user