Skip to content

Commit

Permalink
Avoid unreachable code
Browse files Browse the repository at this point in the history
Reestablish an else that went missing in commit 5ff328d. Without
it, the return is reached unconditionally, and the code behind
it is dead.
  • Loading branch information
Matthias Clasen committed Nov 30, 2012
1 parent b3b8354 commit 5b9c687
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gtk/a11y/gtkwidgetaccessible.c
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,7 @@ gtk_widget_accessible_notify_gtk (GObject *obj,
gtk_widget_accessible_update_tooltip (GTK_WIDGET_ACCESSIBLE (atk_obj),
widget);
}
else
return;

atk_object_notify_state_change (atk_obj, state, value);
Expand Down

0 comments on commit 5b9c687

Please sign in to comment.