diff options
author | Peter Maydell | 2012-11-02 15:54:43 +0100 |
---|---|---|
committer | Anthony Liguori | 2012-11-02 17:12:30 +0100 |
commit | 1d8ddda045b4b72dc95a325debb6df0fc19ec821 (patch) | |
tree | 235cce3423fdc5e639d028e940ae545e9b3c4ff9 | |
parent | xenfb: fix build breakage caused by console cleanup series (diff) | |
download | qemu-1d8ddda045b4b72dc95a325debb6df0fc19ec821.tar.gz qemu-1d8ddda045b4b72dc95a325debb6df0fc19ec821.tar.xz qemu-1d8ddda045b4b72dc95a325debb6df0fc19ec821.zip |
ui/cocoa.m: Update to new DisplayChangeListener member names
Commit a93a4a2 changed the names of some fields in DisplayChangeListener
and broke compilation of the cocoa UI. Update to the new names.
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Andreas Färber <andreas.faerber@web.de>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | ui/cocoa.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/cocoa.m b/ui/cocoa.m index 2383646dc0..87d2e44c69 100644 --- a/ui/cocoa.m +++ b/ui/cocoa.m @@ -1017,8 +1017,8 @@ void cocoa_display_init(DisplayState *ds, int full_screen) dcl = g_malloc0(sizeof(DisplayChangeListener)); // register vga output callbacks - dcl->dpy_update = cocoa_update; - dcl->dpy_resize = cocoa_resize; + dcl->dpy_gfx_update = cocoa_update; + dcl->dpy_gfx_resize = cocoa_resize; dcl->dpy_refresh = cocoa_refresh; register_displaychangelistener(ds, dcl); |