f9e1ef7482
spice: move client_migrate_info command to ui/
...
It has nothing to do with migration, except for the "migrate" in the
name of the command. Move it with the rest of the ui commands.
Signed-off-by: Juan Quintela <quintela@redhat.com >
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org >
2023-04-24 15:01:46 +02:00
ec843b97f2
ui: Split hmp_mouse_set() and move the HMP part to ui/
...
Signed-off-by: Markus Armbruster <armbru@redhat.com >
Message-Id: <20230109190321.1056914-17-armbru@redhat.com >
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org >
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com >
2023-01-19 13:30:01 +01:00
bcaf1fde57
ui: Reduce nesting in hmp_change_vnc() slightly
...
Transform
if (good) {
do stuff
} else {
handle error
}
to
if (!good) {
handle error
return;
}
do stuff
Signed-off-by: Markus Armbruster <armbru@redhat.com >
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com >
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org >
Message-Id: <20230109190321.1056914-15-armbru@redhat.com >
2023-01-19 13:30:01 +01:00
f916a1751e
ui: Factor out hmp_change_vnc(), and move to ui/ui-hmp-cmds.c
...
Signed-off-by: Markus Armbruster <armbru@redhat.com >
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com >
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org >
Message-Id: <20230109190321.1056914-14-armbru@redhat.com >
2023-01-19 13:30:01 +01:00
5011d262f0
ui: Move HMP commands from monitor to new ui/ui-hmp-cmds.c
...
This moves these commands from MAINTAINERS section "Human
Monitor (HMP)" to "Graphics".
Signed-off-by: Markus Armbruster <armbru@redhat.com >
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com >
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org >
Message-Id: <20230109190321.1056914-12-armbru@redhat.com >
2023-01-19 13:30:01 +01:00