mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
console: drop qemu_console_get_ui_info
Unused and duplicate (there is dpy_get_ui_info). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-id: 20201208115737.18581-2-kraxel@redhat.com
This commit is contained in:
parent
2ecfc0657a
commit
c7b22c0a7c
@ -390,7 +390,6 @@ bool qemu_console_is_gl_blocked(QemuConsole *con);
|
||||
char *qemu_console_get_label(QemuConsole *con);
|
||||
int qemu_console_get_index(QemuConsole *con);
|
||||
uint32_t qemu_console_get_head(QemuConsole *con);
|
||||
QemuUIInfo *qemu_console_get_ui_info(QemuConsole *con);
|
||||
int qemu_console_get_width(QemuConsole *con, int fallback);
|
||||
int qemu_console_get_height(QemuConsole *con, int fallback);
|
||||
/* Return the low-level window id for the console */
|
||||
|
@ -2122,12 +2122,6 @@ uint32_t qemu_console_get_head(QemuConsole *con)
|
||||
return con ? con->head : -1;
|
||||
}
|
||||
|
||||
QemuUIInfo *qemu_console_get_ui_info(QemuConsole *con)
|
||||
{
|
||||
assert(con != NULL);
|
||||
return &con->ui_info;
|
||||
}
|
||||
|
||||
int qemu_console_get_width(QemuConsole *con, int fallback)
|
||||
{
|
||||
if (con == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user