mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* dialog.h (struct Dlg_head): Changed the bit fields of length one
from signed int to unsigned int.
This commit is contained in:
parent
ae815922de
commit
32f6020a0f
@ -9,6 +9,8 @@
|
||||
current byte is '\r'.
|
||||
* view.c (view_ccache_dump): Extended the output by the offset
|
||||
of the next line.
|
||||
* dialog.h (struct Dlg_head): Changed the bit fields of length one
|
||||
from signed int to unsigned int.
|
||||
|
||||
2005-08-15 Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
|
||||
|
||||
|
@ -99,8 +99,8 @@ typedef struct Dlg_head {
|
||||
int cols, lines; /* Width and height of the window */
|
||||
|
||||
/* Internal flags */
|
||||
int running:1; /* The dialog is currently active */
|
||||
int fullscreen:1; /* Parents dialogs don't need refresh */
|
||||
unsigned int running:1; /* The dialog is currently active */
|
||||
unsigned int fullscreen:1; /* Parents dialogs don't need refresh */
|
||||
int mouse_status; /* For the autorepeat status of the mouse */
|
||||
|
||||
/* Internal variables */
|
||||
|
Loading…
Reference in New Issue
Block a user