mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
ui/vc: rename kbd_put to qemu_text_console functions
They are QemuTextConsole functions, let's make it clear. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
f5360a0d28
commit
cc6ba2c6f5
8 changed files with 43 additions and 43 deletions
|
@ -49,10 +49,10 @@ void sdl2_process_key(struct sdl2_console *scon,
|
|||
if (ev->type == SDL_KEYDOWN) {
|
||||
switch (qcode) {
|
||||
case Q_KEY_CODE_RET:
|
||||
kbd_put_keysym_console(s, '\n');
|
||||
qemu_text_console_put_keysym(s, '\n');
|
||||
break;
|
||||
default:
|
||||
kbd_put_qcode_console(s, qcode, ctrl);
|
||||
qemu_text_console_put_qcode(s, qcode, ctrl);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue