Tooltip: Avoid redundant variable initialisations

has_tooltip_widget was assigned twice in immediate succession.

return_value is not used anywhere else in this function since commit
14a864c8b5 and does not need a default
value anymore, so move it to the inner scope and don't init to NULL.
This commit is contained in:
Daniel Boles 2017-03-20 21:04:49 +00:00
parent 12b7d30a2d
commit 7e38e3075e

View File

@ -1388,8 +1388,7 @@ static void
gtk_tooltip_handle_event_internal (GdkEvent *event)
{
gint x, y;
gboolean return_value = FALSE;
GtkWidget *has_tooltip_widget = NULL;
GtkWidget *has_tooltip_widget;
GdkDisplay *display;
GtkTooltip *current_tooltip;
@ -1405,6 +1404,8 @@ gtk_tooltip_handle_event_internal (GdkEvent *event)
if (current_tooltip && current_tooltip->keyboard_mode_enabled)
{
gboolean return_value;
has_tooltip_widget = current_tooltip->keyboard_widget;
if (!has_tooltip_widget)
return;