From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59689) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TUMi4-0006Mq-ME for qemu-devel@nongnu.org; Fri, 02 Nov 2012 15:15:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TUMi3-0007wI-Ni for qemu-devel@nongnu.org; Fri, 02 Nov 2012 15:15:16 -0400 Received: from mail-oa0-f45.google.com ([209.85.219.45]:45169) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TUMi3-0007bz-IW for qemu-devel@nongnu.org; Fri, 02 Nov 2012 15:15:15 -0400 Received: by mail-oa0-f45.google.com with SMTP id i18so3616034oag.4 for ; Fri, 02 Nov 2012 12:15:15 -0700 (PDT) From: Anthony Liguori In-Reply-To: <1351868083-26313-1-git-send-email-peter.maydell@linaro.org> References: <1351868083-26313-1-git-send-email-peter.maydell@linaro.org> Date: Fri, 02 Nov 2012 14:15:11 -0500 Message-ID: <87r4obn7eo.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH] ui/cocoa.m: Update to new DisplayChangeListener member names List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , qemu-devel@nongnu.org Cc: Gerd Hoffmann , patches@linaro.org Peter Maydell writes: > Commit a93a4a2 changed the names of some fields in DisplayChangeListener > and broke compilation of the cocoa UI. Update to the new names. > > Signed-off-by: Peter Maydell Applied. Thanks. Regards, Anthony Liguori > --- > ui/cocoa.m | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/ui/cocoa.m b/ui/cocoa.m > index 2383646..87d2e44 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); > -- > 1.7.11.4