tui: newt: remove NULL checks after dereference
priv->start_buttons and priv->end_buttons are initialized at
construction and never changed and so the checks are not needed.
(cherry picked from commit 50ae9c936c
)
This commit is contained in:
@@ -262,12 +262,10 @@ nmt_newt_button_box_size_request (NmtNewtWidget *widget,
|
|||||||
size_request_buttons (bbox, priv->start_buttons, width, height);
|
size_request_buttons (bbox, priv->start_buttons, width, height);
|
||||||
size_request_buttons (bbox, priv->end_buttons, width, height);
|
size_request_buttons (bbox, priv->end_buttons, width, height);
|
||||||
|
|
||||||
if (priv->start_buttons && priv->end_buttons) {
|
if (priv->orientation == NMT_NEWT_BUTTON_BOX_HORIZONTAL)
|
||||||
if (priv->orientation == NMT_NEWT_BUTTON_BOX_HORIZONTAL)
|
*width += 1;
|
||||||
*width += 1;
|
else
|
||||||
else
|
*height += 1;
|
||||||
*height += 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Reference in New Issue
Block a user