[Spice-devel] [PATCH spice-gtk 2/5] widget: minor code style improvements

Christophe Fergeau cfergeau at redhat.com
Thu Jun 8 07:32:13 UTC 2017


On Thu, Jun 08, 2017 at 12:55:38AM +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,
> add brackets to ease reading the inner block vs the condition, remove
> needless != NULL.

I'd lean towards NACK for this one, one letter variable names is imo
very bad for readability. I know this is widespread in the spice-gtk
codebase, but I'd at least rather not expand that usage.

Christophe

> 
> 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
>  }
> -- 
> 2.13.0.91.g00982b8dd
> 
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/spice-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/spice-devel/attachments/20170608/5082c9f7/attachment.sig>


More information about the Spice-devel mailing list