diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-01 13:03:04 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-18 10:21:59 +0100 |
commit | bc2ed9704fff2c721e4056ab5281f0291718bfa6 (patch) | |
tree | a08cb5357c40ba5a0d29bdfc7eadef8ea64c5942 /ui/vnc.c | |
parent | 5e00d3ac475fb4c9afa17612a908e933fe142f00 (diff) |
console: zap displaystate from dcl callbacks
Now that nobody depends on DisplayState in DisplayChangeListener
callbacks any more we can remove the parameter from all callbacks.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/vnc.c')
-rw-r--r-- | ui/vnc.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -430,7 +430,6 @@ static void vnc_refresh(void *opaque); static int vnc_refresh_server_surface(VncDisplay *vd); static void vnc_dpy_update(DisplayChangeListener *dcl, - DisplayState *ds, int x, int y, int w, int h) { int i; @@ -575,7 +574,6 @@ void *vnc_server_fb_ptr(VncDisplay *vd, int x, int y) } static void vnc_dpy_switch(DisplayChangeListener *dcl, - DisplayState *dontuse, DisplaySurface *surface) { VncDisplay *vd = container_of(dcl, VncDisplay, dcl); @@ -740,7 +738,6 @@ static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, i } static void vnc_dpy_copy(DisplayChangeListener *dcl, - DisplayState *dontuse, int src_x, int src_y, int dst_x, int dst_y, int w, int h) { @@ -814,7 +811,6 @@ static void vnc_dpy_copy(DisplayChangeListener *dcl, } static void vnc_mouse_set(DisplayChangeListener *dcl, - DisplayState *dontuse, int x, int y, int visible) { /* can we ask the client(s) to move the pointer ??? */ @@ -842,7 +838,6 @@ static int vnc_cursor_define(VncState *vs) } static void vnc_dpy_cursor_define(DisplayChangeListener *dcl, - DisplayState *dontuse, QEMUCursor *c) { VncDisplay *vd = vnc_display; |