atspicontext: Add a few missing break statements

This commit is contained in:
Timm Bäder 2020-10-16 09:44:25 +02:00
parent 44728d09a9
commit 41ef1d87ef

View File

@ -854,6 +854,7 @@ gtk_at_spi_context_state_change (GtkATContext *ctx,
case GTK_ACCESSIBLE_TRISTATE_FALSE:
emit_state_changed (self, "checked", FALSE);
emit_state_changed (self, "indeterminate", FALSE);
break;
default:
break;
}
@ -889,6 +890,7 @@ gtk_at_spi_context_state_change (GtkATContext *ctx,
break;
case GTK_ACCESSIBLE_INVALID_FALSE:
emit_state_changed (self, "invalid", FALSE);
break;
default:
break;
}
@ -910,6 +912,7 @@ gtk_at_spi_context_state_change (GtkATContext *ctx,
case GTK_ACCESSIBLE_TRISTATE_FALSE:
emit_state_changed (self, "pressed", FALSE);
emit_state_changed (self, "indeterminate", FALSE);
break;
default:
break;
}