From 0a3122b541fd774840eb326943b83cd77d2a958a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Tue, 3 May 2016 17:49:20 +0200 Subject: widget: Remove useless NULL check We are checking for allocation != NULL at the beginning of the function already. This also means that the allocation parameter is not nullable. --- gtk/gtkwidget.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index deb639798e..4ebe69e899 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -15611,7 +15611,7 @@ _gtk_widget_set_simple_clip (GtkWidget *widget, /** * gtk_widget_get_allocated_size: * @widget: a #GtkWidget - * @allocation: (out) (allow-none): a pointer to a #GtkAllocation to copy to + * @allocation: (out): a pointer to a #GtkAllocation to copy to * @baseline: (out) (allow-none): a pointer to an integer to copy to * * Retrieves the widget’s allocated size. @@ -15638,8 +15638,8 @@ gtk_widget_get_allocated_size (GtkWidget *widget, priv = widget->priv; - if (allocation) - *allocation = priv->allocated_size; + *allocation = priv->allocated_size; + if (baseline) *baseline = priv->allocated_size_baseline; } -- cgit v1.2.1