[Spice-devel] [PATCH spice-gtk 2/5] widget: minor code style improvements
Pavel Grunt
pgrunt at redhat.com
Thu Jun 8 07:45:29 UTC 2017
On Thu, 2017-06-08 at 00:55 +0400, marcandre.lureau at redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau at redhat.com>
>
> Use shorter line, use the common "d" variable for private data
> access,
just to make the line shorter?
> add brackets to ease reading the inner block vs the condition,
> remove
> needless != NULL.
we keep the comparison explicit when it is not boolean
Pavel
> spice_display_get_gl_scanout
> Signed-off-by: Marc-André Lureau <marcandre.lureau at redhat.com>
> ---
> src/spice-widget.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/src/spice-widget.c b/src/spice-widget.c
> index 1a1d5a6..d948c6d 100644
> --- a/src/spice-widget.c
> +++ b/src/spice-widget.c
> @@ -617,10 +617,12 @@ drawing_area_realize(GtkWidget *area, gpointer
> user_data)
> {
> #ifdef GDK_WINDOWING_X11
> SpiceDisplay *display = SPICE_DISPLAY(user_data);
> + SpiceDisplayPrivate *d = display->priv;
>
> if (GDK_IS_X11_DISPLAY(gdk_display_get_default()) &&
> - spice_display_get_gl_scanout(SPICE_DISPLAY_CHANNEL(display-
> >priv->display)) != NULL)
> + spice_display_get_gl_scanout(SPICE_DISPLAY_CHANNEL(d-
> >display))) {
> spice_display_widget_gl_scanout(display);
> + }
>
> #endif
> }
More information about the Spice-devel
mailing list