On 02/02/2018 05:10 AM, Gerd Hoffmann wrote: > Not used any more, delete it. > > Signed-off-by: Gerd Hoffmann <kra...@redhat.com> > --- > vl.c | 7 ++----- > 1 file changed, 2 insertions(+), 5 deletions(-) > > diff --git a/vl.c b/vl.c
> @@ -4368,7 +4364,8 @@ int main(int argc, char **argv, char **envp) > error_report("-no-frame, -alt-grab and -ctrl-grab are only valid " > "for SDL, ignoring option"); > } > - if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) { > + if (dpy.has_window_close && > + (display_type != DT_GTK && display_type != DT_SDL)) { > error_report("-no-quit is only valid for GTK and SDL, " > "ignoring option"); Does this mean we should move the 'window-close' field out of the common base type and into DisplayGTK/DisplaySDL instead (where sdl would need its own type instead of DisplayNoOpts)? I guess the difference is how long we have been flagging this error message - if we rearrange the QAPI type, this code is dead and you've broken the command line that tries to do window type none combined with -no-quit; but if that command line has already been documented as broken, it is no real loss. But if we haven't had enough of a deprecation period yet, then keeping window-close global to all variants of the union and doing the runtime rejection check lets us finish the deprecation period. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3266 Virtualization: qemu.org | libvirt.org
signature.asc
Description: OpenPGP digital signature