mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-29 21:12:07 -06:00
ui: drop curor_hide global variable.
No users left. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
9cfca0b937
commit
9b6701290a
2 changed files with 0 additions and 3 deletions
|
@ -41,7 +41,6 @@ extern const char *keyboard_layout;
|
||||||
extern int win2k_install_hack;
|
extern int win2k_install_hack;
|
||||||
extern int alt_grab;
|
extern int alt_grab;
|
||||||
extern int ctrl_grab;
|
extern int ctrl_grab;
|
||||||
extern int cursor_hide;
|
|
||||||
extern int graphic_rotate;
|
extern int graphic_rotate;
|
||||||
extern int no_shutdown;
|
extern int no_shutdown;
|
||||||
extern int old_param;
|
extern int old_param;
|
||||||
|
|
2
vl.c
2
vl.c
|
@ -168,7 +168,6 @@ int no_hpet = 0;
|
||||||
int fd_bootchk = 1;
|
int fd_bootchk = 1;
|
||||||
static int no_reboot;
|
static int no_reboot;
|
||||||
int no_shutdown = 0;
|
int no_shutdown = 0;
|
||||||
int cursor_hide = 1;
|
|
||||||
int graphic_rotate = 0;
|
int graphic_rotate = 0;
|
||||||
const char *watchdog;
|
const char *watchdog;
|
||||||
QEMUOptionRom option_rom[MAX_OPTION_ROMS];
|
QEMUOptionRom option_rom[MAX_OPTION_ROMS];
|
||||||
|
@ -3563,7 +3562,6 @@ int main(int argc, char **argv, char **envp)
|
||||||
no_shutdown = 1;
|
no_shutdown = 1;
|
||||||
break;
|
break;
|
||||||
case QEMU_OPTION_show_cursor:
|
case QEMU_OPTION_show_cursor:
|
||||||
cursor_hide = 0;
|
|
||||||
dpy.has_show_cursor = true;
|
dpy.has_show_cursor = true;
|
||||||
dpy.show_cursor = true;
|
dpy.show_cursor = true;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue